Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
div > p {
  background-color: gold;
  border: 1px solid gray;
}
</style>
</head>
<body>
<h1>The Child (>) Combinator</h1>
<div>
  <h2>Donald Duck</h2>
  <p>Donald Duck lives in Duckburg.</p>
</div>
<div>
  <span><p>I will not be styled.</p></span>
  <p>I will be styled.</p>
</div>
<p>Donald Duck's best friend is Mickey.</p>
</body>
</html>