<!DOCTYPE html>
<title>Example</title>
<style>
article pre {
font-size: 1.4em;
color: limegreen;
background: beige;
}
</style>
<article>
<h1>Descendant combinator example</h1>
<pre>Here's some
preformatted text
</pre>
<aside>
</aside>
</article>
<p>The descendant combinator matches all instances of preformatted text, because they are all are descendants of the <code>article</code> element.</p>