我想添加一个 Twitter 引导 glyphicon 来替换下面 CSS 文件中的图像引用,但不确定如何。
.edit-button {
background: url('../img/edit.png') no-repeat;
width: 16px;
height: 16px;
}
在 HTML 中,我将其添加如下:
<i class="icon-search icon-white"></i>
有任何想法吗?
更新 - 尽管它只在 Firefox 的萤火虫中显示宽度和高度,但尝试了以下操作:
.edit-button
{
/* background: url('../img/edit.png') no-repeat; */
background: url(../img/glyphicons-halflings.png) no repeat -96px -72px !important;
width: 16px;
height: 16px;
}
不知道为什么它没有被捡起?