下面的CSS会抛出警告(Chrome中的效果很好):无效的属性值
#commentblock ol li {
background: url(../img/comment-bottom.png) no-repeat scroll left 50px bottom
}
上面的CSS有什么问题?请帮忙!
更新
我修改了css如下,然后它可以显示背景图片,但它不是我想要的?
#commentblock ol li {
background: url(../img/comment-bottom.png) no-repeat scroll left bottom
}
我现在该怎么办?红色矩形中的图片是#commentblock ol li。
答案 0 :(得分:0)
该位置只能有两个值,一个用于水平,一个用于垂直。你有三个:left 50px bottom
。那么这三个中的哪两个是你的意思?
在您的问题中,您说您尝试删除了50px
,但我猜您是要删除left
。
#commentblock ol li {
background: url(../img/comment-bottom.png) no-repeat scroll 50px bottom
}
(不能用小提琴说明,抱歉,因为我没有你的图形。)