<!DOCTYPE html><html><head>
<title>Child combinator</title>
<style type="text/css">.white { background-color: transparent ! important; }
.green { background-color: lime; }
div > p.test { background-color: red; }</style>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/">
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors">
<meta name="flags" content="">
</head>
<body>
<div>
<p class="white test"></p>
<div>
<p class="white test"></p>
</div>
</div>
<table>
<tbody>
<tr>
<td>
<p class="green test">This paragraph should have a green background.</p>
</td>
</tr>
</tbody>
</table>
</body></html>