tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

fixed-inside-sticky-clip.html (405B)


      1 <!DOCTYPE html>
      2 <style>
      3 .scroll {
      4  overflow: scroll;
      5  scrollbar-width: none;
      6  width: 100px;
      7  height: 100px;
      8 }
      9 .spacer {
     10  height: 200%;
     11  width: 100%;
     12 }
     13 .sticky {
     14  position: sticky;
     15 }
     16 .fixed {
     17  position: fixed;
     18  height: 100px;
     19  width: 200px;
     20  background: cyan;
     21 }
     22 </style>
     23 <div class="scroll">
     24  <div class="sticky">
     25    <div class="fixed">
     26    </div>
     27  </div>
     28  <div class="spacer"></div>
     29 </div>