我有以下CSS。
body {
font-family: Arial;
font-size: 12px;
color: #666666;
line-height: 18px;
background: url('../bg.jpg') no-repeat bottom left;
}
身体规则奇怪地停止应用。当我更改参数时没有任何反应。 我解决了它如下。
body {
font-family: Arial;
font-size: 12px;
color: #666666;
line-height: 18px;
background: url('../bg.jpg') no-repeat bottom left;
}
body {
font-family: Arial;
font-size: 12px;
color: #666666;
line-height: 18px;
background: url('../bg.jpg') no-repeat bottom left;
}
并且它正在工作,但当我删除一个正文{...}规则时,它无效。
你知道为什么会这样吗?
谢谢
答案 0 :(得分:1)
检查上面没有语句错误,例如未闭合的大括号({})或未终止的规则(;)。通过CSS验证程序运行此操作可能会为您标记这些问题:http://jigsaw.w3.org/css-validator/