我有一个表单的提交按钮。我使用精灵作为背景,所以在悬停时,我将背景移动到按钮的宽度上以获得悬停效果。但是,这是行不通的。
这是我的html:
<form class="a">
<All the other Fields...>
<p><input type="submit" value="Submit"/><p>
</form>
我的CSS:
.a input[type="submit"] {
margin-top: 15px;
background: url(btn.png) no-repeat;
width: 108px;
height: 42px;
border: none;
color: transparent;
font-size: 0;
}
.a input[type="submit"]:hover {
background: url(btn.png) no-repeat 109 0;
}