tor-browser

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

align-self-static-position-005-ref.html (409B)


      1 <!DOCTYPE html>
      2 <link rel="stylesheet" href="/fonts/ahem.css">
      3 <style>
      4 .container {
      5  position: relative;
      6  border: 1px solid;
      7 }
      8 
      9 .abs {
     10  position: absolute;
     11  background: purple;
     12  opacity: 0.5;
     13  bottom: 0px;
     14 }
     15 </style>
     16 <div class="container">
     17  <span style="font: 20px/1 Ahem;">hello
     18    <span class="abs">hello</span>
     19    <span style="vertical-align: top; font-size: 50px;">world</span>
     20  </span>
     21 </div>