Answers for "apply css hover on other element"

CSS
1

can you control another div on hover css

#a:hover + #b {
    background: #ccc
}

<div id="a">Div A</div>
<div id="b">Div B</div>
Posted by: Guest on July-21-2021
-2

css hover change another element

#a:hover + #b {
    background: #ccc
}

<div id="a">Div A</div>
<div id="b">Div B</div>
Posted by: Guest on March-31-2021

Code answers related to "apply css hover on other element"

Browse Popular Code Answers by Language