tor-browser

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

flexible-order-ref.html (615B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head><title>CSS Test: Change the value of 'order' property</title>
      4 <link rel="author" title="KeynesQu" href="mailto:keynesqu@sohu.com" />
      5 
      6 <style>
      7 
      8 .box {
      9 margin:0 auto;
     10 background:#CCC;
     11 border-radius:5px;
     12 width:600px;
     13 }
     14 
     15 .box div {
     16 margin:0;
     17 width:200px;
     18 float:left;
     19 text-align:center;
     20 }
     21 
     22 .box .red {
     23 background:#F00;
     24 }
     25 .box .blue {
     26 background:#00F;
     27 }
     28 .box .black {
     29 color:#FFF;
     30 background:#000;
     31 }
     32 
     33 
     34 
     35 
     36 </style>
     37 
     38 </head>
     39 
     40 <body>
     41 
     42 
     43 <!-- FLEX CONTAINER -->
     44 <div class="box">
     45 <div class="blue">B</div>
     46 <div class="red">A</div>
     47 <div class="black">C</div>
     48 </div>
     49 
     50 
     51 
     52 </body>
     53 </html>