tor-browser

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

flexbox_columns-flexitems.html (534B)


      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="help"
      5 href="http://www.w3.org/TR/css-flexbox-1/#flex-containers">
      6 <link rel="match" href="flexbox_columns-flexitems-ref.html">
      7 <style>
      8 div {
      9 background: blue;
     10 
     11 display: flex;
     12 justify-content: space-around;
     13 }
     14 p {
     15 font-family: monospace;
     16 background: yellow;
     17 column-rule: 1em solid lime;
     18 columns: 2;
     19 width: 200px;
     20 margin: 0;
     21 }
     22 </style>
     23 
     24 <div>
     25 <p>one two three four five</p>
     26 </div>