tor-browser

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

flex-ref.html (351B)


      1 <!DOCTYPE html>
      2 <style>
      3 .container {
      4  border: solid 2px;
      5  display: flow-root;
      6  width: 300px;
      7 }
      8 
      9 .child {
     10  background: green;
     11  border: solid 2px;
     12  box-sizing: border-box;
     13  float: left;
     14  height: 100px;
     15 }
     16 </style>
     17 
     18 <div class="container">
     19  <div class="child" style="width: 100px;"></div>
     20  <div class="child" style="width: 200px;"></div>
     21 </div>