| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
| <html> |
| <head> |
| <title>CSS 2.1 Test Suite: word-spacing</title> |
| <style type="text/css"> |
| div { font: 24px/1 Ahem; width: 12em; background: yellow; color: aqua; margin: 0 0 0 2em; } |
| .eight {word-spacing: 24px;} |
| .nine {word-spacing: normal;} |
| .ten {word-spacing: 300%;} |
| .eleven {word-spacing: -1em;} |
| </style> |
| <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#spacing-props" title="16.4 Letter and word spacing: the 'letter-spacing' and 'word-spacing' properties"> |
| </head> |
| <body> |
| <p>There should be a stripy pattern of yellow and aqua below (each vertical stripe should be straight and unbroken).</p> |
| <div class="test">x x xx xx</div> |
| <div class="test">x x xx xx</div> |
| <div class="test">x x xx xx</div> |
| <div class="eight"> x x <span class="nine">xx xx</span> </div> |
| <div class="ten"> x x xx xx </div> |
| <div class="eleven"> x x xx xx </div> |
| </body> |
| </html> |