This selects all tags directly preceded by tags:
A+B { /* styling */ }
What is t
You can ONLY do the converse: This selects all tags directly preceded by tags.
This is logically equivalent to your request.
I often use this to style a row of many checkboxes with labels
CSS:
label+input { margin-left: 4px; }
DOM:
... ... ...