Here's a full example:
Code:
<h1>title</h1><div><span>xx</span><p>magic</p><p>other</p>
<h1>title</h1><div><span>xx</span><p>magic</p><p>other</p>
Code:
h1 + div p:first-of-type {
color: red;
}
this should result in *both* magic words being red, and only those.