I have CSS
div.myButton input a {
display:block;
height: 24px;
width: 43px;
padding:10px 10px 10px 7px;
font: bold 13px sans-serif;;
color:#333;
background: url("hover.png") 0 0 no-repeat;
text-decoration: none;
}
myButton a:hover {
background-position: 0 -44px;
color: #049;
}
myButton a:active {
background-position: 0 -88px;
color:#fff;
}
And then i have HTML
<div class="myButton"><INPUT type="submit" name="" value=""></div>
I don't know where I'm going wrong but I'm unable to view the image !!
Any help ?
Thanks