tor-browser

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

flexbox_stf-table-caption.html (593B)


      1 <!DOCTYPE html>
      2 <title>flexbox | flexcontainer versus stf :: table-caption</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="../reference/blank.html">
      6 <style>
      7 #test {
      8 background: red;
      9 display: table-caption;
     10 }
     11 div div {
     12 background: white;
     13 width: 300px;
     14 
     15 display: flex;
     16 flex-wrap: wrap;
     17 }
     18 p {
     19 color: white;
     20 margin: 1em;
     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>