直到几个小时前一切都很好,我的css的外部资源被加载了...... 我认为这可能是一个连接问题所以我上传到ftp服务器没有成功的结果......
作为外部资源,我有一个图像&来自谷歌的字体 这些资源未加载
.body{
background-image: url(http://i.imgur.com/xmDujXb.jpg);
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
font-family: 'Lato', sans-serif;
font-weight: 300;
}
我不知道它是否相关,但我使用括号代码
答案 0 :(得分:3)
删除.
中的.body
,它应该有效。
答案 1 :(得分:0)
请勿使用.body
它不是一个班级
只需使用
body{
background-image: url(http://i.imgur.com/xmDujXb.jpg);
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
font-family: 'Lato', sans-serif;
font-weight: 300;
}
如果正确请选择最佳答案:D