Answers for "on hover change the css of other div css"

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

on hover display another div css

.showme {
  display: none;
}

.showhim:hover .showme {
  display: block;
}


<div class="showhim">HOVER ME
  <div class="showme">hai</div>
</div>
Posted by: Guest on December-24-2020
-1

css hover change other element

#container:hover > #cube { background-color: yellow; }
Posted by: Guest on August-12-2020

Browse Popular Code Answers by Language