tor-browser

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

spacer-and-container-ref.html (397B)


      1 <!doctype HTML>
      2 <html>
      3 <meta charset="utf8">
      4 <title>Spacer and a container (reference)</title>
      5 <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
      6 
      7 <style>
      8 .spacer {
      9  width: 150px;
     10  height: 3000px;
     11  background: lightblue;
     12 }
     13 #container {
     14  contain: style layout;
     15  width: 150px;
     16  height: 150px;
     17 }
     18 </style>
     19 
     20 <div class="spacer"></div>
     21 <div id="container"></div>
     22 </html>