tor-browser

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

block-ellipsis-repaint-004-ref.html (408B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5 #clamp {
      6  border: 1px solid black;
      7  padding: 4px;
      8  background-color: yellow;
      9 
     10  font: 16px/16px serif;
     11 }
     12 .ellipsis {
     13  font: bold 32px/0 serif;
     14 }
     15 </style>
     16 
     17 <p>The ellipsis should be bold and twice as large as the rest of the text.</p>
     18 
     19 <div id="clamp">
     20  Line 1 <br>
     21  Line 2 <br>
     22  Line 3<span class="ellipsis"></span>
     23 </div>