tor-browser

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

block-ellipsis-007.html (677B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Overflow: block-ellipsis and ::first-line</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/#block-ellipsis">
      6 <link rel="match" href="reference/block-ellipsis-007-ref.html">
      7 <meta name="assert" content="The block overflow ellipsis must not be included in the ::first-line pseudoelement of the line-clamp container.">
      8 <style>
      9 .clamp {
     10  line-clamp: 1;
     11  color: teal;
     12 }
     13 .clamp::first-line {
     14  color: purple;
     15  font-weight: bold;
     16  font-style: italic;
     17  font-size: 1.5em;
     18 }
     19 </style>
     20 <div class="clamp">
     21  Line 1<br>
     22  Line 2
     23 </div>