tor-browser

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

line-clamp-with-abspos-023-ref.html (453B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Overflow: test reference</title>
      4 <style>
      5 .clamp {
      6  font: 16px / 32px serif;
      7  background-color: yellow;
      8 }
      9 .rel {
     10  position: relative;
     11 }
     12 .abspos {
     13  position: absolute;
     14  right: 0;
     15  width: 100px;
     16  height: 100px;
     17  background-color: green;
     18 }
     19 </style>
     20 <div class="clamp">
     21 Line 1<br>
     22 Line 2<br>
     23 Line 3<br>
     24 Line 4<br>
     25 <div class="rel"><div class="abspos">This abspos should be visible</div></div>
     26 </div>