tor-browser

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

webkit-box-clamp-bottom-border.html (369B)


      1 <!DOCTYPE html>
      2 <link rel="match" href="webkit-box-clamp-bottom-border-ref.html">
      3 <style>
      4  #wb {
      5    display: -webkit-box;
      6    -webkit-box-orient: vertical;
      7    -webkit-line-clamp: 3;
      8    overflow: hidden;
      9    white-space: pre;
     10    border-bottom: red 14px solid;
     11  }
     12 </style>
     13 <p>Line-clamp should respect bottom-border.
     14 <div id="wb">Line 1
     15 Line 2
     16 Line 3
     17 Line 4
     18 </div>