tor-browser

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

page-name-fixed-pos-001-print.html (498B)


      1 <!DOCTYPE html>
      2 <html>
      3  <link rel="match" href="page-name-fixed-pos-001-print-ref.html"/>
      4  <link rel="help" href="https://www.w3.org/TR/css-page-3/#using-named-pages"/>
      5  <style>
      6 div {
      7    width: 1in;
      8    height: 1in;
      9    border: 1px solid black;
     10 }
     11 .fixed {
     12    position: fixed;
     13    display: flex;
     14    left: 0.5in;
     15    top: 0.5in;
     16    border-color: blue;
     17 }
     18  </style>
     19  <body>
     20    <div class="fixed">fixed</div>
     21    <div style="page: a">a</div>
     22    <div class="page: b">b</div>
     23  </body>
     24 </html>