i wanted to make a log-in button with the type="submit" with an image that has an hover image too and :active image also,
well its work fine on firefox and chrome, but on internet explorer its just give the basic image and not giving the hover image and the active image.
and beside that, its make a dotted line on the button when you click on it.
how its show on IE:
http://imageshack.us/photo/my-images/72/ieproblem.jpg/
how its show on chrome and firefox:
http://imageshack.us/photo/my-images/685/chromes.jpg/
.button
{
border:none;
background: url(../img/login.jpg);
width:41px;height:19px;
}
.button:hover
{
background: url(../img/loginhover.jpg) no-repeat top left;
width: 41px;
height: 19px;
}
.button:active {
background: url(../img/loginactive.jpg);
}
the button code on HTML:
<input type="submit" class="button" value=""/>
