tor-browser

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

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


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