-1

下面的 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。

4

1 回答 1

0

位置只能有两个值,一个是水平的,一个是垂直的。你有三个:left 50px bottom。那么这三个中的哪两个是你的意思?

在您的问题中,您说您尝试删除50px,但我的猜测是您打算删除left.

#commentblock ol li {
   background: url(../img/comment-bottom.png) no-repeat scroll 50px bottom
}

(不能用小提琴来说明,抱歉,因为我没有你的图形。)

于 2013-07-10T09:44:02.493 回答