Matches/Any pseudo-class
by stopsatgreen
HTML
<p>Bums</p>
CSS
:-moz-any(p) { color: green; }
:-webkit-any(p) { color: green; }
:-moz-matches(p) { color: red; }
:-webkit-matches(p) { color: red; }
:matches(p) { color: blue; }
by stopsatgreen
<p>Bums</p>
:-moz-any(p) { color: green; }
:-webkit-any(p) { color: green; }
:-moz-matches(p) { color: red; }
:-webkit-matches(p) { color: red; }
:matches(p) { color: blue; }