tor-browser

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

flexbox_stf-table-singleline-2.html (690B)


      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: blue;
     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 p:last-child {
     24 margin-right: 200em;
     25 }
     26 </style>
     27 
     28 <div id="test">
     29 <div>
     30 	<p>filler</p>
     31 	<p>filler</p>
     32 	<p>filler</p>
     33 	<p>filler</p>
     34 	<p>filler</p>
     35 </div>
     36 </div>