I'm referring to this question: Hover behavior for a dl list in CSS
The accepted answer will only highlight the first <dd>
following a <dt>
, but when there are multiple <dd>
s only the first (adjacent) one is affected.
I've looked at the combinators: https://www.w3schools.com/css/css_combinators.asp but none really cover multiple <dd>
s since they are not actually descendant or child elements of the <dt>
.
Is there a CSS solution that will affect all <dd>
s following a <dt>
?