tor-browser

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

flexbox_justifycontent-spacebetween-negative-ref.html (636B)


      1 <!DOCTYPE html>
      2 <title>flexbox | justify-content: space-between / negative</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 height: 8em;
     10 width: 17em;
     11 position: relative;
     12 }
     13 span {
     14 background: white;
     15 margin: 1em 0;
     16 width: 4em;
     17 height: 6em;
     18 position: absolute;
     19 left: 1em;
     20 display: inline-block;
     21 }
     22 span:nth-child(1) {background: yellow;}
     23 span:nth-child(2) {
     24 background: pink;
     25 left: 7em;
     26 }
     27 span:nth-child(3) {
     28 background: lightblue;
     29 left: 13em;
     30 }
     31 </style>
     32 
     33 <div>
     34 <span>one</span>
     35 <span>two</span>
     36 <span>three</span>
     37 </div>