tor-browser

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

webkit-line-clamp-038-ref.html (295B)


      1 <!DOCTYPE html>
      2 <style>
      3 .clamp {
      4  display: -webkit-box;
      5  -webkit-box-orient: vertical;
      6  -webkit-line-clamp: 3;
      7  font: 16px / 32px serif;
      8  background-color: yellow;
      9  overflow: hidden;
     10 }
     11 </style>
     12 <div class="clamp">
     13  <div>
     14    Line 1<br>Line 2<br>Line 3<br>Line 4<br>Line 5
     15  </div>
     16 </div>