tor-browser

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

line-clamp-013-ref.html (419B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5 .clamp {
      6  font: 16px / 32px serif;
      7  padding: 4px;
      8  white-space: pre;
      9  background-color: yellow;
     10  border: 2px solid black;
     11 }
     12 .inner {
     13  background-color: skyblue;
     14  height: 3lh;
     15  padding: 4px;
     16  border: 2px solid purple;
     17 }
     18 </style>
     19 <div class="clamp">Line 1
     20 Line 2<div class="inner">Line 3
     21 Line 4…</div></div>
     22 <p>Following content.</p>