页面只接受背景中的颜色,图像不是
background: url (img/fondo-ingresar.jpg);
我甚至尝试将其放入HTML中但仍然出现“无效的属性值”错误
答案 0 :(得分:1)
删除空格并且可以正常工作
background: url(img/fondo-ingresar.jpg);
background
属性是多个属性的简历,您可以定义值空间分隔:
background: #fff center center no-repeat url(url.jpg);
如果您在url
和()
之间放置一个空格,则无法识别它。
答案 1 :(得分:0)
尝试这样:
background: url("img/fondo-ingresar.jpg");
删除url和括号之间的空格,并将路径放入引号。
P.S。您还可以尝试使用background-image
属性加载它:
background-image: url("img/fondo-ingresar.jpg");