tor-browser

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

line-clamp-balance-012-ref.html (382B)


      1 <!DOCTYPE html>
      2 <html>
      3 <meta charset="utf-8">
      4 <title>CSS Overflow: test reference</title>
      5 <style>
      6 .clamp {
      7  font-family: monospace;
      8  line-height: 1;
      9 }
     10 span { font-size: 2em; }
     11 </style>
     12 <p>Test passes if you see numbers up to 12 and not beyond.
     13 
     14 <div class="clamp">
     15    0<br>
     16    1 2 <span>3</span><br>
     17    <span>4</span> 5 6<br>
     18    7 8 <span>9</span><br>
     19    10 11 12…
     20 </div>