An implementation of the :matches
pseudo-selector for rework, based on CSS Selectors Level 4.
npm install rework-matches
a:matches(:hover, :active, :focus) > :matches(span, div) {
color: red;
}
..becomes..
a:hover > span,
a:hover > div,
a:active > span,
a:active > div,
a:focus > span,
a:focus > div {
color: red;
}