white-space-3.html (454B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <style> 5 div { font: 24px monospace; width: 0; } 6 b { font-weight: normal; background: yellow; } 7 .cell { display: table-cell; border: 1px solid green; background: red; } 8 .nowrap { white-space: nowrap; } 9 .prewrap { white-space: pre-wrap; } 10 </style> 11 </head> 12 <body> 13 14 <p>There should be no red:</p> 15 16 <div><span class="cell"><b>Hiya<span class="prewrap"> </span><span class="nowrap"> </span>Kitty</b></span></div> 17 18 </body> 19 </html>