Answers for "show div o hover"

2

hover over something to make html visible

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

how to override hover css

ul li.disabled, ul li.disabled:hover{
    color:grey;
}
Posted by: Guest on February-20-2022

Browse Popular Code Answers by Language