tor-browser

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

flexbox_stf-table-singleline.html (650B)


      1 <!DOCTYPE html>
      2 <title>flexbox | singleline flexcontainer versus stf :: table</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-items">
      5 <link rel="match" href="flexbox_stf-table-singleline-ref.html">
      6 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      7 <style>
      8 #test {
      9 background: red;
     10 display: table;
     11 }
     12 div div {
     13 background: red;
     14 width: 0;
     15 
     16 display: flex;
     17 }
     18 p {
     19 font-family: Ahem;
     20 margin: 1em 0;
     21 width: 200px;
     22 }
     23 </style>
     24 
     25 <div id="test">
     26 <div>
     27 	<p>filler</p>
     28 	<p>filler</p>
     29 	<p>filler</p>
     30 	<p>filler</p>
     31 	<p>filler</p>
     32 </div>
     33 </div>