tor-browser

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

flexbox_columns-flexitems-2-ref.html (462B)


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