tor-browser

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

flexbox_align-items-baseline-ref.html (633B)


      1 <!DOCTYPE html>
      2 <title>flexbox | align-items: baseline</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: white;
     15 width: 8em;
     16 height: 2em;
     17 display: block;
     18 position: absolute;
     19 top: 1em;
     20 left: 1em;
     21 }
     22 span:nth-child(1) {background: yellow;}
     23 span:nth-child(2) {
     24 background: pink;
     25 height: 3em;
     26 left: 11em;
     27 }
     28 span:nth-child(3) {
     29 background: lightblue;
     30 height: 4em;
     31 left: 21em;
     32 }
     33 </style>
     34 
     35 <div>
     36 <span>one</span>
     37 <span>two</span>
     38 <span>three</span>
     39 </div>