伙计们,我正在尝试在我的 css 按钮上创建当前视图状态,但未能成功......精灵有两种状态,关闭和结束状态..我希望结束状态也成为页面上的当前状态正在查看....这里是按钮的 css 以及 html:
CSS:
.inbox {
border: none;
width: 88px;
height: 26px;`enter code here`
background: url(images/v2images/default_inbox_BTN.png) no-repeat top left;
margin-left: 0px;
margin-right: 20px;
vertical-align: middle;
cursor:pointer;
}
.inbox:hover {
background-position: -88px 0;
}
html:
<input type="submit" value="" class="inbox" />
我假设我将只创建一个当前状态(.inbox:current)并调整定位以匹配过度状态,这与悬停但没有负值不同,但它不起作用。
在此先感谢伙计们