tor-browser

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

flexbox_item-float.html (490B)


      1 <!DOCTYPE html>
      2 <title>flexbox | floated item</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <link rel="help"
      5 href="http://www.w3.org/TR/css-flexbox-1/#flex-containers">
      6 <link rel="match" href="flexbox_item-float-ref.html">
      7 <style>
      8 body>div {
      9 background: black;
     10 margin: 1em;
     11 
     12 display: flex;
     13 }
     14 div div {
     15 background: #3366cc;
     16 margin: 2em;
     17 width: 2em;
     18 height: 2em;
     19 float: right;
     20 }
     21 </style>
     22 
     23 <div>
     24 <div></div>
     25 <div></div>
     26 <div></div>
     27 <div></div>
     28 </div>