tor-browser

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

flexbox_width-overflow.html (509B)


      1 <!DOCTYPE html>
      2 <title>flexbox | overflow</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/#justify-content-property">
      6 <link rel="match" href="../reference/blank.html">
      7 <style>
      8 div {
      9 background: red;
     10 height: 4em;
     11 width: 0;
     12 overflow: hidden;
     13 
     14 display: flex;
     15 justify-content: space-around;
     16 }
     17 p {width: 200px;}
     18 </style>
     19 
     20 <div>
     21 <p>one two three four</p>
     22 <p>filler</p>
     23 <p>filler</p>
     24 <p>filler</p>
     25 <p>filler</p>
     26 </div>