I use CSS to hover and it works, but the hover image allows the background image ( pic_normal ) to appear as transparent behind the image ( pic_hover ).
How to display only the hover image when you hover over it?
HTML
<img id="first" src="images/clients/pic_normal.png" />
CSS
#first img:hover { background-image: url("/images/clients/pic_hover.png"); background-repeat: no-repeat; }
krish source share