我正在尝试使用 CSS 替换 html 中的图像,所以
<img class="flechaTooltip" src="oldpath" />
turns into
.flechaTooltip {
width: 0;
height: 0;
padding: 11px 209px 0 0; /* New image's dimensions here */
background: url(../../nImg/flechaTooltipGris.gif) no-repeat;
/* Removing image from older Opera */
content: "";
display: inline-block;
}
但它似乎没有任何效果,知道为什么吗?
-编辑-
我已经使用这种技术来替换 img 的文本,但从未尝试将 img 替换为另一个 img