letter-spacing-end-of-line-002-ref.html (516B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>CSS Text reference</title> 4 <link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com"> 5 6 <style> 7 div { 8 margin: 1em; 9 font: 24px monospace; 10 white-space: pre; 11 display: inline-block; 12 outline: 1px solid gray; 13 } 14 .letterspc { 15 letter-spacing: 10px; 16 } 17 .nospc { 18 letter-spacing: 0px; 19 } 20 </style> 21 22 <p>None of these examples should wrap to a second line:</p> 23 <div class=letterspc>1. a</div> 24 <br> 25 <div class=letterspc>2. b</div> 26 <br> 27 <div class=nospc>3. c</div>