tor-browser

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

webkit-line-clamp-035-ref.html (482B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS reference</title>
      4 <link rel="stylesheet" href="/fonts/ahem.css">
      5 <style>
      6 #parent {
      7  display: inline-block;
      8  background: green;
      9 }
     10 #clamp {
     11  font-family: Ahem;
     12  display: block;
     13  overflow: hidden; /* can be removed once implementations update their old -webkit-line-clamp implementations */
     14 }
     15 </style>
     16 <div id="parent">
     17  <div id="clamp">
     18    AAA<br>
     19    BBB<br>
     20    CCC<span style="visibility: hidden"></span>
     21  </div>
     22 </div>