tor-browser

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

flexbox_columns-flexitems-ref.html (351B)


      1 <!DOCTYPE html>
      2 <title>flexbox | multicol on flexbox items</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <style>
      5 div {
      6 background: blue;
      7 }
      8 p {
      9 font-family: monospace;
     10 background: yellow;
     11 column-rule: 1em solid lime;
     12 columns: 2;
     13 width: 200px;
     14 margin: 0 auto;
     15 }
     16 </style>
     17 
     18 <div>
     19 <p>one two three four five</p>
     20 </div>