Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="container">

  <h1>Pure CSS Scroll To Top</h1>

  <div class="intro">
    <p>
      <strong>A CSS-only solution to reveal a scroll-to-top link on scrolling down the page + animated scroll back to top.</strong>
    </p>

    <p>Uses <a href="https://caniuse.com/#search=position%3Asticky" target="_blank">position: sticky</a></em> for reveal, <a href="https://caniuse.com/#search=scroll-behavior" target="_blank">scroll-behavior</a></em> for animated scroll and position: fixed fallback (button is always visible).
    </p>
  </div>

  <input type="checkbox" id="dummy-content-toggle">
  <input type="checkbox" id="fallback-toggle" onchange="this.checked ? document.documentElement.style.scrollBehavior = 'auto' : document.documentElement.removeAttribute('style');">

  <div class="clearfix">
    <label for="dummy-content-toggle">
    Toggle Page Height
    <span>
      Hide the button if page content<br>
      is smaller than the viewport
      </span>
  </label>
    <label for="fallback-toggle">
    Disable Browser Support
    <span>Button is visible in a<br>
      fixed position, no animation</span>
  </label>
  </div>

  <div id="dummy-content">

    <h3>Scroll down &#8595;</h3>

    <p>
      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor
      in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
    </p>

    <h3>No JavaScript...</h3>

    <p>
      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
    </p>

    <p>
      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor
      in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
    </p>

    <h3>...less CPU burden.</h3>

    <p>
      Consectetur non proident adipisicing elit, sed non proident do eiusmod tempor incididunt ut labore sdfsdsd sdf et dolore magna aliqua. Duis aute irure dolor in reprehenderit in sdsdfsdf voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur
      sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
    </p>

    <p>
      Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.
      Lorem ipsum dolor sit amet, consectetur non proident adipisicing elit, sed non proident do eiusmod tempor incididunt ut labore et dolore magna aliqua.
    </p>

  </div>

  <div class="scrolltop-wrap">
    <a href="#" role="button" aria-label="Scroll to top">
        <svg height="48" viewBox="0 0 48 48" width="48" height="48px" xmlns="http://www.w3.org/2000/svg">
            <path id="scrolltop-bg" d="M0 0h48v48h-48z"></path>
            <path id="scrolltop-arrow" d="M14.83 30.83l9.17-9.17 9.17 9.17 2.83-2.83-12-12-12 12z"></path>
        </svg>
    </a>
  </div>

</div>
              
            
!

CSS

              
                html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

@mixin setScrolltopColors($bgColor: #333, $arrowColor: white, $bgColorHover: $bgColor, $arrowColorHover: $arrowColor) {
  #scrolltop-bg {
    fill: $bgColor;
  }
  #scrolltop-arrow {
    fill: $arrowColor;
  }
  a:hover {
    #scrolltop-bg {
      fill: $bgColorHover;
    }
    #scrolltop-arrow {
      fill: $arrowColorHover;
    }
  }
}

.scrolltop-wrap {
  $size: 3rem;
  $offsetBottom: 2rem;
  $offsetHorizontal: 2rem;
  $scrollToRevealDistance: 12rem; // scroll offset to reveal scroll-to-top link
  $color: #007bff;
  box-sizing: border-box;
  position: absolute;
  top: $scrollToRevealDistance;
  right: $offsetHorizontal;
  bottom: 0;
  pointer-events: none;
  backface-visibility: hidden;
  @include setScrolltopColors($color, white, lighten($color, 8%));
  // prevent extra page height if content is smaller than viewport
  // Firefox only
  @supports (-moz-appearance: meterbar) {
    clip: rect(0, $size, auto, 0);
  }
  a {
    $offset: - ($size + $offsetBottom); // pull up + add a small bottom space
    position: fixed; // fallback
    position: sticky;
    top: $offset;
    width: $size;
    height: $size;
    margin-bottom: $offset;
    transform: translateY(100vh); // push to bottom from top (when stuck)
    backface-visibility: hidden;
    display: inline-block;
    text-decoration: none;
    user-select: none;
    pointer-events: all;
    outline: none;
    overflow: hidden;
    svg {
      display: block;
      border-radius: 50%;
      width: 100%;
      height: 100%;
      path {
        transition: all 0.1s;
      }
    }
    #scrolltop-arrow {
      transform: scale(0.66);
      transform-origin: center;
    }
  }
  @media print {
    display: none !important;
  }
}

// presentation styles

html {
  overflow-y: scroll;
  overflow-x: hidden;
  &::before {
    content: "";
    display: block;
    backface-visibility: hidden;
    position: fixed;
    top: 0;
    right: -5px;
    bottom: 0;
    left: -5px;
    background: url("https://images.pexels.com/photos/62693/pexels-photo-62693.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260")
      center center no-repeat;
    background-size: cover;
    filter: brightness(1.14) blur(2px);
  }
}

body {
  font-family: "Raleway", sans-serif;
  max-width: 40rem;
  margin: 0 auto;
  color: black;
  line-height: 2;
  background: transparent;
  text-align: center;
}

.container {
  position: relative;
  padding: 2rem 2rem 6rem;
}

h1,
h2,
h3,
p {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.intro {
  font-size: 1.16rem;
}

.intro a:hover {
  text-decoration: underline;
}

#dummy-content p {
  display: inline;
  background: rgba(black, 0.12);
  color: transparent;
  user-select: none;
  border-radius: 2px;
  box-decoration-break: clone;
  + p {
    &:before {
      visibility: hidden;
      content: ".";
      display: block;
    }
  }
}

label {
  display: inline-block;
  float: left;
  margin-right: -1px;
  padding: 0.4rem 0.9rem 0.6rem;
  border: 1px solid rgba(#b2b7bb, 0.99);
  border-radius: 3px;
  cursor: pointer;
  user-select: none;
  transition: all 0.1s;
  font-size: 96%;
  font-weight: 600;
  width: 50%;
  span {
    font-size: 0.86rem;
    line-height: 1.33rem;
    display: block;
    font-weight: 400;
  }
  &[for="dummy-content-toggle"] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  &[for="fallback-toggle"] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  &:hover {
    color: #1e8aff;
    border-color: darken(#b2b7bb, 6%);
  }
}

input[type="checkbox"] {
  display: none;
}

input#dummy-content-toggle {
  &:checked {
    ~ #dummy-content {
      display: none;
    }
    ~ div label[for="dummy-content-toggle"] {
      background: #1e8aff;
      border-color: #1e8aff;
      color: white;
    }
  }
}

input#fallback-toggle {
  &:checked {
    ~ .scrolltop-wrap a {
      position: fixed;
    }
    ~ div label[for="fallback-toggle"] {
      background: #1e8aff;
      border-color: #1e8aff;
      border-left-color: #ddd;
      color: white;
    }
  }
}

a {
  color: #1e8aff;
}

ul {
  margin-top: -1rem;
}

@media screen and (max-width: 721px) {
  html {
    font-size: 84%;
    &::before {
      background: #eff0f2;
    }
  }
  .container {
    padding: 1rem 1.5rem 2rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h1,
  h2,
  h3,
  p {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

              
            
!

JS

              
                
              
            
!
999px

Console