tor-browser

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

auto-block-size-floats-ref.html (334B)


      1 <!DOCTYPE html>
      2 <style>
      3 .container {
      4  width: 150px;
      5  border: solid 2px;
      6 }
      7 
      8 .left {
      9  float: left;
     10  background: green;
     11  width: 100px;
     12  height: 100px;
     13 }
     14 
     15 .right {
     16  float: right;
     17  background: green;
     18  width: 100px;
     19  height: 100px;
     20 }
     21 </style>
     22 
     23 <div class="container">
     24  <div class="left"></div>
     25  <div class="right"></div>
     26 </div>