tor-browser

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

block-ellipsis-repaint-002-ref.html (367B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5 .clamp {
      6  border: 1px solid black;
      7  padding: 4px;
      8  background-color: yellow;
      9  height: 3.5lh;
     10 }
     11 #line1 {
     12  line-height: 2lh;
     13 }
     14 </style>
     15 
     16 <p>The ellipsis should appear right after the end of the second line.</p>
     17 
     18 <div class="clamp">
     19  <span id="line1">Line 1</span> <br>
     20  Line 2…
     21 </div>