我想type="submit"
用一个带有悬停图像的图像和:活动图像制作一个登录按钮,它在Firefox和 chrome 上工作正常,但在Internet Explorer上它只提供基本图像而不是悬停图像和活动图像。除此之外,当你点击它时,它会在按钮上画一条虚线。
它如何在 IE 上显示:
http://imageshack.us/photo/my-images/72/ieproblem.jpg/
它如何在 chrome 和 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);
}
HTML上的按钮代码:
<input type="submit" class="button" value=""/>