tor-browser

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

flexbox_item-bottom-float-ref.html (407B)


      1 <!DOCTYPE html>
      2 <title>flexbox | GCPM bottom float</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <style>
      5 div {
      6 background: black;
      7 margin: 1em;
      8 height: 6em;
      9 width: 400px;
     10 }
     11 p {
     12 background: #3366cc;
     13 margin: 2em;
     14 width: 2em;
     15 height: 2em;
     16 float: left;
     17 }
     18 div::after {
     19 content: "";
     20 clear: both;
     21 display: block;
     22 }
     23 </style>
     24 
     25 <div>
     26 <p></p>
     27 <p></p>
     28 <p></p>
     29 <p></p>
     30 </div>