tor-browser

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

webkit-line-clamp-049-ref.html (414B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test Reference</title>
      4 <style>
      5  .no-bottom-margin {
      6    margin-bottom: 0;
      7  }
      8  .clamp {
      9    display: flow-root;
     10    font: 16px / 32px serif;
     11    white-space: pre;
     12    background-color: yellow;
     13  }
     14 </style>
     15 
     16 <p class="no-bottom-margin"><span>The following yellow box should clamp after 4 lines.</span></p>
     17 
     18 <div class="clamp">Line 1
     19 Line 2
     20 Line 3
     21 Line 4…</div>