tor-browser

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

flexbox_flex-1-N-0-ref.html (534B)


      1 <!DOCTYPE html>
      2 <title>flexbox | flex: 1 N 0</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: 40em;
     11 }
     12 span {
     13 background: yellow;
     14 margin: 1em 0;
     15 width: 10em;
     16 height: 6em;
     17 display: inline-block;
     18 }
     19 span:nth-child(2) {background: pink;}
     20 span:nth-child(3) {background: lightblue;}
     21 span:nth-child(4) {background: grey;}
     22 </style>
     23 
     24 <div>
     25 <span>one</span><span>two</span><span>three</span><span>four</span>
     26 </div>