Example

by Julien Etienne

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/General_sibling_selectors -->

<span>This is not red.</span>
<p class="fff">Here is a paragraph.</p>
<code>Here is some code.</code>
<span>And here is a red span!</span>
<code>More code...</code>
<span>And this is a red span!</span>

CSS

.fff ~ span {
  color: red;
}