I wish to make alterations to a div named rightPanel when either itself, or another div named "plus", is hovered.
div#plus:hover, div#rightPanel:hover ~ #rightPanel {
// make changes to rightPanel
}
(The current combinators are not working). How can I organise the precedence of the combinators to have the effect of (div#plus:hover, div#rightPanel:hover) ~ #rightPanel?