tor-browser

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

line-clamp-auto-023-ref.html (347B)


      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: yellow;
      9 }
     10 .clamp > div {
     11  padding: 6px;
     12  border: 2px solid black;
     13  white-space: pre;
     14 }
     15 </style>
     16 <div class="clamp">
     17 <div>Line 1
     18 Line 2
     19 Line 3</div>
     20 <div>Line 4
     21 Line 5
     22 Line 6…</div>
     23 </div>