IE7 上的边距问题

发布于 2024-11-25 01:14:19 字数 252 浏览 2 评论 0原文

我正在处理的页面可以在这里找到

在 IE7 中,主要内容区域中的所有内容都被推到左侧...

有人可以检查一下并让我知道发生了什么吗?

这是屏幕截图:

在此处输入图像描述

The page I am working on can be found here.

In IE7, everything in the main content area is being pushed to the left...

Can someone check it out and let me know what's up?

Here is a screenshot:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

执手闯天涯 2024-12-02 01:14:19

我这台计算机上没有 IE7,但看起来您已将 float:left 应用到您的主 div

#body_container {
 float: left; // try removing this
}

编辑

再看看源代码和页面似乎在 IE7 中以怪异模式呈现。

以下是解决该问题的几种方法:

  1. 确保所有代码均有效
  2. 确保使用正确的文档类型

详细信息:强制 IE7 进入标准渲染模式(不是怪癖)

I don't have IE7 on this computer, but it looks like you have float:left applied to your main div

#body_container {
 float: left; // try removing this
}

EDIT

Had another look at the source and the page appears to be rendering in quirks mode in IE7.

Here are few ways to fix that:

  1. make sure all your code is valid
  2. make sure you are using the right doctype

Details here: Forcing IE7 into standards rendering mode (not quirks)

丑疤怪 2024-12-02 01:14:19

如果这只是 IE7 中的问题,您可能需要尝试 IE7兼容模式

If this is a problem only in IE7, you might wanna try IE7 compatibility mode

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