我对网络开发很陌生,我有这样的代码:
<style type="text/css">
span {
background:red;
background: transparent url(../images/skin/exception.png) 0.4em 100% no-repeat;
}
</style>
<span>
Contents.
</span>
我得到了输出,但图像被放置在Contents
文本上。我试过:
background-position: 25px;
但这正在使图像消失!但我一直在寻找的是:
Contents . . . . . . . . . . . . . my_image
(注意.
上面是空格)
我在哪里犯错误?
提前致谢。