指定 body CSS 宽度安全吗?

发布于 2024-10-17 05:54:24 字数 555 浏览 1 评论 0原文

现在通常满足于以一定的尺寸居中。

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鲸落 2024-10-24 05:54:24

大小是安全的,但是 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文