tor-browser

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

column-sibling-1-ref.html (374B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style type="text/css">
      5 #block1, #block2 {
      6 height: 20px;
      7 background-color: orange;
      8 }
      9 #multi-column {
     10 height: 20px;
     11 background-color: blue;
     12 }
     13 .spacer {
     14 height: 20px;
     15 }
     16 </style>
     17 </head>
     18 <body>
     19 <div id="block1"></div>
     20 <div class="spacer"></div>
     21 <div id="multi-column"></div>
     22 <div class="spacer"></div>
     23 <div id="block2"></div>
     24 </body>
     25 </html>