我正在添加一个像李子弹的图像:
.top_right li {
float: left;
width: 7em;
line-height: 100%;
background: url(images/thumbs.png) no-repeat top 4px left;
border-bottom: solid 1px #222;
margin-right: 1em;
padding: 5px 0 5px 1.3em
}
为什么想法为什么thumbs.png没有在IE 8和7中显示?
答案 0 :(得分:0)
这是一个有效的demo。我必须删除top 4px left
属性中的bakcground
以显示要显示的图片。
您必须指定top left
或Xpx Ypx
,不能将它们混淆:)。