tor-browser

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

float-continuations-000.ref.html (575B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
      2 <style type="text/css">
      3 
      4 .multicol {
      5  margin: 1em;
      6  border: solid silver;
      7  width: 500px;
      8  column-width: 100px;
      9  column-gap: 0;
     10  height: 100px;
     11  position: relative;
     12 }
     13 
     14 #clear {
     15  top: 50px;
     16  border-top: 4px solid orange;
     17  width: 100%;
     18  position: absolute;
     19  z-index: -1;
     20 }
     21 
     22 .float {
     23  border: aqua 30px;
     24  border-style: none solid;
     25  height: 300px;
     26 }
     27 
     28 .pad {
     29  padding-top: 50px;
     30 }
     31 </style>
     32 
     33 <body>
     34 
     35 <div class="multicol">
     36  <div id="clear"></div>
     37  <div class="pad"></div>
     38  <div class="float">&nbsp;</div>
     39 </div>