尝试加载CSS时出现此错误。我已经读过空格是CSS中的一个问题。我怀疑这可能是我如何指定图片所在的URL的语法。这是代码:
.post {
width: 368px;
height: 376px;
background-image: url: "../images/pictures of liana/" The Cutest Face Ever.jpg);
position: absolute;
}
.post img {
width: 335px;
height: 275px;
margin: 25px 0 0 15px;
}
.post p {
text-align: center;
font-family: Georgia, serif;
font-size: 20px;
color: #2E2E2E;
margin-top: 15px;
}
答案 0 :(得分:0)
无效的css就在这里:
background-image: url: "../images/pictures of liana/" The Cutest Face Ever.jpg);
应该是:
background-image:url("../images/pictures%of%liana/The%Cutest%Face%Ever.jpg")
我建议您重命名没有空格的文件夹和图片,并使用以下内容:
background-image:url("../images/liana/lady1.jpg")