tor-browser

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

line-clamp-auto-025-ref.html (413B)


      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  background-color: yellow;
      9 }
     10 .inner {
     11  white-space: pre-wrap;
     12 }
     13 .abspos {
     14  position: absolute;
     15  width: 100px;
     16  height: 100px;
     17  background-color: skyblue;
     18 }
     19 </style>
     20 
     21 <div class="clamp">
     22 <div class="inner">Line 1
     23 Line 2
     24 Line 3
     25 Line 4…
     26 </div>
     27 <div class="abspos"></div>
     28 </div>