Forum Moderators: not2easy
What's my best way to apply a swap image behavior to an image inside a div?
Sorry for my ignorance on all this!
#test a {
width: 200px;
height: 200px;
padding:0;
margin:0;
display: block;
background:url(200x200.jpg) top left no-repeat;
}
#test a:hover {
background:url(200x200-mouseover.jpg) top left no-repeat;
}
<p id="test"><a href="some-url.html"> </a></p>
May contain errors, but that approach should get you started . . .