<html>
<head>
<style>
div + p {
background-color: gold;
border: 1px solid gray;
}
</style>
</head>
<body>
<h1>The Next-sibling (+) Combinator</h1>
<div>
<p>Donald Duck<p>
<p>Donald Duck lives in Duckburg.</p>
</div>
<div>
<span><p>I will not be styled.</p></span>
<p>I will not be styled.</p>
</div>
<p>Donald Duck's best friend is Mickey.</p>
<p>Some other text.</p>
</body>
</html>