Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!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> <pre>Here's some preformatted text </pre> </aside> <pre>Here's some preformatted text </pre> </article> <p>The descendant combinator matches all instances of preformatted text, because they are all are descendants of the <code>article</code> element.</p>
Preview