tor-browser

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

vertical-align-top-bottom-padding-ref.html (520B)


      1 <!DOCTYPE html>
      2 <style>
      3 div {
      4  margin-top: 50px;
      5  font-size: 10px;
      6  line-height: 1;
      7 }
      8 
      9 .inline-block {
     10  display: inline-block;
     11  height: 30px;
     12  width: 30px;
     13  background: blue;
     14 }
     15 
     16 .top .inline-block {
     17  vertical-align: top;
     18 }
     19 
     20 .bottom .inline-block {
     21  vertical-align: bottom;
     22 }
     23 
     24 </style>
     25 <body>
     26  <div class="top">
     27    <span>
     28      Next
     29      <span class="inline-block"></span>
     30    </span>
     31  </div>
     32  <div class="bottom">
     33    <span>
     34      Next
     35      <span class="inline-block"></span>
     36    </span>
     37  </div>
     38 </body>