无效的属性值?

时间:2012-07-10 20:00:41

标签: html css

我正在尝试使用css为搜索栏添加背景。但是chrome不断给出错误“无效的属性值”。这很奇怪,因为我的导航栏是完全相同的代码,但没有给出错误? http://ispiked.net/tests/

2 个答案:

答案 0 :(得分:6)

这是因为您还在背景图片中指定了“不重复”。将您的代码更改为:

background: url(images/searchbar.png) no-repeat;

答案 1 :(得分:2)

另一种方法是使用background-repeat属性。

background-image: url('images/searchbar.png');
background-repeat: no-repeat;