tor-browser

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

sticky-pos-scrollable-7-ref.html (462B)


      1 <!DOCTYPE html>
      2 <html>
      3  <style>
      4    #header {
      5      position: fixed;
      6      top: 0;
      7      left: 9px;
      8    }
      9    #header > div {
     10      border-radius: 10px;
     11      overflow:hidden;
     12      height: 100px;
     13      width: 100px;
     14    }
     15    #inner {
     16      width: 200px;
     17      height: 200px;
     18      background-color:green;
     19    }
     20  </style>
     21  <div id="section">
     22      <div id="header">
     23        <div>
     24          <div id="inner"></div>
     25        </div>
     26      </div>
     27  </div>
     28 </html>