Answers for "show a div on hover"

CSS
2

hover over something to make html visible

div {
    display: none;
}
    
a:hover + div {
    display: block;
}
Posted by: Guest on March-25-2020
-1

how to hover div in css

<div class="casual-div"></div>

.casual-div:hover {
  background-color: red;
}
Posted by: Guest on October-29-2021

Browse Popular Code Answers by Language