指定 body CSS 宽度安全吗?
现在通常满足于以一定的尺寸居中。
<html>
<head>
<style type="text/css">
#content { margin: auto; width: 960px;}
</style>
</head>
<body>
<div id="content">Blah!</div>
</body>
</html>
不使用包装器进行对齐和大小,并将其直接应用于 body
标记是否安全? 像这样:
<html>
<head>
<style type="text/css">
body { margin: auto; width: 960px;}
</style>
</head>
<body>
Blah
</body>
</html>
Now very often content with a certain size centered.
<html>
<head>
<style type="text/css">
#content { margin: auto; width: 960px;}
</style>
</head>
<body>
<div id="content">Blah!</div>
</body>
</html>
Is it safe to not use a wrapper for alignment and size, and apply it directly to a body
tag? Like this:
<html>
<head>
<style type="text/css">
body { margin: auto; width: 960px;}
</style>
</head>
<body>
Blah
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大小是安全的,但是
margin: auto
居中并不完全。您还必须将
text-align: center
添加到正文样式中,以使其在 IE6 中居中。 (是的,我知道,这完全没有意义,但这就是 IE6 的工作原理)The size is safe, however the
margin: auto
-centering isn’t completely.You have to add
text-align: center
to the body style to center it in IE6, too. (Yeah, I know, it totally makes no sense, but that’s hoe IE6 works)