CSS后台位置不起作用

时间:2012-12-13 22:56:02

标签: css background-image background-position

我这里有这段代码......

.madactive{background: url(/graphics/madarrow.jpg) no-repeat center top 20px !important;}

但是图像不再出现了,我检查了元素并且css被划掉了......

我要做的是在我的背景图片上放置一个顶部。

我做错了什么?

1 个答案:

答案 0 :(得分:5)

您的声明值中有太多参数。根据您的具体需求,以下任何一项都可以使用:

.madactive{background: url(/graphics/madarrow.jpg) no-repeat center top !important;}

.madactive{background: url(/graphics/madarrow.jpg) no-repeat center 20px !important;}