So i have some trouble with a , the mouseover works but i need something more than that, it has to delete it’s content when the background changes.
#Test01{
background: url(../img/Test01.png);
float: left;
display: block;
height: 297px;
width: 319px;
}
#Test01:hover {
background: url(../img/Test01hover.png);
}
<div id="Test01"><div id="test01content">lot's of bla bla bla bla bla</div></div>
so this div with it’s content should be gone when it does it’s mouseover.
thx
Instead of using CSS, try use Javascript to achieve it,