tor-browser

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

letter-spacing-end-of-line-001.html (717B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text level 3 Test: letter spacing at end of line</title>
      4 <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
      5 <link rel="help" href="https://drafts.csswg.org/css-text-3/#letter-spacing-property">
      6 <link rel="match" href="reference/letter-spacing-end-of-line-001-ref.html">
      7 <meta name="assert" content="Letter-spacing must not be applied at the beginning or at the end of a line.">
      8 <style>
      9 div {
     10  font-family: monospace;
     11  font-size: 3em;
     12 }
     13 span {
     14  float:left;
     15  letter-spacing: 1ch;
     16 }
     17 </style>
     18 
     19 <p>Test passes if the rightmost character of the line that starts with “a” is under the number 4.
     20 <div>12345</div>
     21 <div><span>aa</span>a</div>