我想验证我的CSS,我的背景重复行有问题。我该怎么写才能验证它。
#contentBackground
{
position: relative;
width: 1280px;
top: 0px;
padding: 0px;
background-image: url(../images/contentBG.png);
background-repeat: repeat-x repeat-y;
}
这是我给出的错误:
值错误:background-repeat无法识别太多的值或值:repeat-x repeat-y repeat-x repeat-y
答案 0 :(得分:4)
我认为有效的输入是:
在您的情况下,“重复”似乎是正确的。