Home › Forums › Back End › css / html text on text mouseover shortcode wrap › Reply To: css / html text on text mouseover shortcode wrap
April 9, 2015 at 12:21 pm
#200075
Participant
LE: the solution came after I’ve made these changes in the css :
...
.child {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: white;
display: block;
}
.parent:hover .child {
display: none;
}
...