content-174.xht (966B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Generated Content: \A and white-space</title> 5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 6 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/content/004.html" type="text/html"/> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content" /> 8 <link rel="match" href="content-174-ref.xht" /> 9 10 <style type="text/css"> 11 .red { background: red; width: 5em; font: 1em/1 monospace; height: 1em; } 12 .small { width: 1em; } 13 span:before { background: green; color: white; white-space: nowrap; content: 'Test\Apasses if this sentence has a green background.'; } 14 </style> 15 </head> 16 <body> 17 <div class="red"> 18 <div class="small"> 19 <span></span> 20 </div> 21 </div> 22 </body> 23 </html>