letter-spacing-nesting-002.html (750B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Text level 3 Test: letter spacing on element with single character</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-nesting-002-ref.html"> 7 <meta name="assert" content="Applying letter-spacing to an element containing only a single character has no effect on the rendered result"> 8 <style> 9 div { 10 font-family: monospace; 11 font-size: 3em; 12 } 13 span { 14 letter-spacing: 1ch; 15 } 16 </style> 17 18 <p>Test passes if the rightmost character of the line that starts with “a” is under the number 3. 19 <div>12345</div> 20 <div>a<span>a</span>a</div>