tor-browser

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

webkit-line-clamp-block-in-inline-001-ref.html (231B)


      1 <!DOCTYPE html>
      2 <style>
      3 .clamp {
      4  display: -webkit-inline-box;
      5  -webkit-box-orient: vertical;
      6  -webkit-line-clamp: 3;
      7 }
      8 </style>
      9 <body>
     10  <div class="clamp">
     11    1<br>
     12    2<br>
     13    <div>3</div>
     14    4<br>
     15    5
     16  </div>
     17 </body>