tor-browser

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

flexbox_wrap-long-ref.html (495B)


      1 <!DOCTYPE html>
      2 <title>flexbox | flex-wrap: wrap</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 width: 20em;
     10 }
     11 span {
     12 background: white;
     13 margin: 1em;
     14 width: 8em;
     15 display: block;
     16 float: left;
     17 }
     18 span:first-child {
     19 width: 18em;
     20 }
     21 div::after {
     22 content: "";
     23 clear: both;
     24 display: block;
     25 }
     26 </style>
     27 
     28 <div>
     29 <span>one</span>
     30 <span>two</span>
     31 <span>three</span>
     32 <span>four</span>
     33 </div>