tor-browser

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

flexbox_flex-auto-ref.html (494B)


      1 <!DOCTYPE html>
      2 <title>flexbox | flex: auto</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <style>
      5 div {
      6 background: blue;
      7 margin: 1em 0;
      8 border: 1px solid black;
      9 height: 8em;
     10 width: 32em;
     11 }
     12 span {
     13 background: white;
     14 margin: 1em;
     15 width: 6em;
     16 height: 6em;
     17 display: inline-block;
     18 
     19 }
     20 </style>
     21 
     22 <div>
     23 <span>one</span><span>two</span><span>three</span><span>four</span>
     24 </div>
     25 
     26 <div>
     27 <span>one</span><span>two</span><span>three</span><span>four</span>
     28 </div>