tor-browser

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

flexbox_align-items-flexend-ref.html (560B)


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