tor-browser

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

flexbox_rtl-flow-ref.html (447B)


      1 <!DOCTYPE html>
      2 <title>flexbox | flex-flow: column wrap | rtl</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <style>
      5 div {
      6 background: blue;
      7 margin: 1em 0;
      8 border: 1px solid black;
      9 width: 20em;
     10 height: 8em;
     11 }
     12 span {
     13 text-align: right;
     14 background: white;
     15 margin: 1em;
     16 width: 8em;
     17 float: left;
     18 display: block;
     19 }
     20 </style>
     21 
     22 <div>
     23 <span>three</span>
     24 <span>one</span>
     25 <span>four</span>
     26 <span>two</span>
     27 </div>