tor-browser

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

line-clamp-auto-031-ref.html (331B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5 .clamp {
      6  display: flow-root;
      7  font: 16px / 32px serif;
      8  background-color: orange;
      9 }
     10 .inner {
     11  white-space: pre;
     12  margin: 5px;
     13  background-color: yellow;
     14 }
     15 </style>
     16 
     17 <div class="clamp">
     18 <div class="inner">Line 1
     19 Line 2
     20 Line 3
     21 Line 4…</div>
     22 </div>