Home / Admin / Back to Top CSS
Duplicate Snippet

Embed Snippet on Your Site

Back to Top CSS

Simple Vanilla JS back to top button. All three parts HTML, CSS and JS required.

Code Preview
css
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: ivory;
    opacity: .75;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid;
    border-radius: 50%;
    text-decoration: none;
    display: none; /* Hidden by default */
    z-index: 99;
}   

Comments

Add a Comment