+ 4
How to hide text under hover?
text should display while box is hover across the screen.
3 Antworten
+ 3
text {
opacity: 1;
}
text:hover {
opacity: 0;
}
+ 2
thanks to both of u i will try both the way
0
.txt:hover {display: none}
text should display while box is hover across the screen.