tor-browser

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

position-sticky-bug1434250-ref.html (506B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <meta charset='utf-8'>
      5    <style type="text/css" media="all">
      6      body {
      7        margin-top: 0;
      8        overflow: hidden;
      9      }
     10      .container {
     11        width: 500px;
     12        background: #fcc;
     13        height: 2000px;
     14      }
     15      .header {
     16        position: sticky;
     17        top: 0px;
     18        background: #cfc;
     19        height: 50px;
     20      }
     21    </style>
     22  </head>
     23  <body>
     24    <div class='container'>
     25      <div class='header'></div>
     26    </div>
     27  </body>
     28 </html>