无法使用 CSS 重置更改正文背景颜色
这是我的 HTML 代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Hover Zoom</title>
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.3.0/build/cssreset/reset-min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" >
</head>
<body>
</body>
</html>
这是我的 CSS 文件代码(style.css
):
body {
background-color: #FF0000;
}
但是 body
的背景颜色没有改变。
没有CSS重置,它工作正常。你能给我建议一个更好的 CSS 重置,或者任何其他解决方案吗?
Here is my HTML code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Hover Zoom</title>
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.3.0/build/cssreset/reset-min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" >
</head>
<body>
</body>
</html>
Here is my CSS file code (style.css
):
body {
background-color: #FF0000;
}
but the background color of body
does not change.
Without the CSS reset, it works fine. Can you suggest me a better CSS reset, or any other solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您的选择器更改为
change your selector to
brenjt 的答案是正确的,但我将解释错误所在以及该解决方案为何有效:
您的 CSS 重置文件设置
html
的背景颜色,即整个页面。您只需设置body
的背景颜色,但由于没有内容,您的 body 的高度非常小。因此,您看不到主体的背景颜色。只需在 CSS 中设置
html
和body
即可:编辑:
如果您没有设置
html
背景颜色,那么body
的背景颜色将代表整个页面。但由于您使用的是外部源的 CSS 重置,因此您无法选择不设置html
属性。brenjt's answer is correct, but I'll provide an explanation for what is wrong and why that solution works:
Your CSS reset file sets the background color of
html
which is the entire page. You are only setting thebody
's background color, but your body is extremely small in height since you have no content. Consequentially, you do not see the body's background color.Just set both the
html
andbody
in CSS like this:EDIT:
Had you not set the
html
background color, thenbody
's background color would represent the whole page. But since you are using an external source's CSS reset, you do not have the option of not setting thehtml
properties.