css3-modsel-151.xml (773B)
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>:empty pseudo-class and whitespace</title> 5 <style type="text/css"><![CDATA[ 6 address { background: lime; margin: 0; height: 1em; } 7 address:empty { background: red; } 8 .text { margin: -1em 0 0 0; } 9 ]]></style> 10 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 11 <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found --> 12 <link rel="match" href="reference/this-line-lime-background-offset.xht"/> 13 </head> 14 <body> 15 <address> </address> 16 <div class="text">This line should have a green background.</div> 17 </body> 18 </html>