<!DOCTYPE html><html><head>
<title>:empty pseudo-class and whitespace</title>
<style type="text/css">
address { background: lime; margin: 0; height: 1em; }
address:empty { background: red; }
.text { margin: -1em 0 0 0; }
</style>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors">
<link rel="match" href="reference/this-line-lime-background-offset.xht">
<meta name="flags" content="">
</head>
<body>
<address></address>
<div class="text">This line should have a green background.</div>
</body></html>