tor-browser

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

line-clamp-014.html (638B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Overflow: line-clamp doesn't apply to inline boxes</title>
      4 <link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-overflow-4/#line-clamp">
      6 <link rel="match" href="reference/webkit-line-clamp-001-ref.html">
      7 <meta name="assert" content="line-clamp only affects block containers, not inline boxes">
      8 <style>
      9 .block {
     10  font: 16px / 32px serif;
     11  background-color: yellow;
     12 }
     13 .clamp {
     14  line-clamp: 4;
     15  white-space: pre;
     16 }
     17 </style>
     18 <div class="block"><span class="clamp">Line 1
     19 Line 2
     20 Line 3
     21 Line 4
     22 Line 5</span></div>