为什么在尝试添加背景图像时出现解析错误?

时间:2019-04-12 19:31:07

标签: css html5

我的老师要求它通过CSS完成。 尽管我确定它在盯着我,但我不知道我在哪里滑了。

/* font: font-style font-variant font-weight font-size/line-height font-family; */

/* font: italic small-caps normal 13px/150% Arial, Helvetica, sans-serif */

body {
font: normal normal normal 14px/1.3em arial, sans-serif; 
}

h1 {
font: normal normal; padding: 1.5em;
}

li {
display: inline; 
}

.nav {
    font: normal normal bolder 30px/1.5em arial, sans-serif; background-color: #526063;
}

a {
color: #ff4300;
}

body {
background-image: url(../Project Img/camping sky.jpg);
}

1 个答案:

答案 0 :(得分:2)

只需使用引号,然后空格就可以了。单或双:

background-image: url('../Project Img/camping sky.jpg');