I don't want to use js to do what I want to do. So I want to display a div when I hover it without use the js.
Here is my css :
.testHover{
width : 100px;
height : 100px;
position : relative;
}
.background{
width : 100px;
height : 100px;
background : pink;
}
.cachee{
visibility : hidden;
background : green;
position : absolute;
top :0px;
z-index : 999;
}
.cachee:hover{
visibility : visible;
}
I made a jsfiddle : https://jsfiddle.net/g8ud4ck0/3/
So I want to display the text just by hover it, but it doesn't work, how can I do please ?