Trying to Style a Button with 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;
}
Using the Button in HTML
<div class="myButton"><INPUT type="submit" name="" value=""></div>
I'm having trouble displaying the image on the button despite following the CSS styling. Any suggestions?
Appreciate any assistance!