tor-browser

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

flexbox_item-bottom-float.html (505B)


      1 <!DOCTYPE html>
      2 <title>flexbox | GCPM bottom float</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-property">
      5 <link rel="match" href="flexbox_item-bottom-float-ref.html">
      6 <style>
      7 div {
      8 background: black;
      9 margin: 1em;
     10 height: 6em;
     11 width: 400px;
     12 
     13 display: flex;
     14 }
     15 p {
     16 background: #3366cc;
     17 margin: 2em;
     18 width: 2em;
     19 height: 2em;
     20 float: -o-bottom;
     21 }
     22 </style>
     23 
     24 <div>
     25 <p></p>
     26 <p></p>
     27 <p></p>
     28 <p></p>
     29 </div>