这个按钮在 CSS Sprites 之前
<input type="image" src="/images/search-button.png" value="" id="search-button">
我正在尝试使用我的一种搜索表单来实现 CSS Sprites,问题是如果我使用
<input id="search-button" class="sprites1" type="submit" value="">
它看起来像这样。
如您所见,右侧的图像看起来不正确,但它是可点击的。
然后我尝试了
<span id="search-button" class="sprites1"></span>
然后它看起来正确!但!!我不能点击它。
所以这是我的 CSS sprites 代码。
我必须实施什么才能让它看起来像我想要的那样,我可以点击它?
.sprites1 {
background: url('result.png');
}
#search-button {background-position: -0px -462px;
width:16px; height:16px; float:right; }