tor-browser

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

line-clamp-with-abspos-018-ref.html (415B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5 .clamp {
      6  font: 16px / 32px serif;
      7  padding: 0 4px;
      8  white-space: pre;
      9  background-color: yellow;
     10 }
     11 .abspos {
     12  position: absolute;
     13  right: 0;
     14  margin: 4px;
     15  white-space: pre;
     16  background-color: skyblue;
     17 }
     18 </style>
     19 <div class="clamp">Line 1
     20 Line 2
     21 Line 3
     22 Line 4…<div class="abspos">Line A
     23 Line B
     24 Line C
     25 Line D
     26 Line E</div></div>