tor-browser

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

webkit-line-clamp-033.html (689B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Overflow: -webkit-line-clamp with an empty line</title>
      4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      5 <link rel="help" href="https://drafts.csswg.org/css-overflow-3/#webkit-line-clamp">
      6 <link rel="match" href="/css/reference/blank.html">
      7 <style>
      8 .clamp {
      9  display: -webkit-box;
     10  -webkit-box-orient: vertical;
     11  -webkit-line-clamp: 3;
     12  font: 16px / 32px serif;
     13  white-space: pre;
     14  background-color: yellow;
     15  padding: 0 4px;
     16  overflow: hidden; /* can be removed once implementations update their old -webkit-line-clamp implementations */
     17 }
     18 </style>
     19 <div class="clamp"><div><span></span></div></div>