Answers for "not(:hover"

CSS
4

not hover css

.element:not(:hover) {
	/*Your code here*/
}
Posted by: Guest on June-03-2021
1

how to apply css when not on hover

section{
   font-size:3em;
}

div:not(:hover) + section{
 display:none;
}
Posted by: Guest on April-21-2022

Browse Popular Code Answers by Language