IE6 和 IE6 中的绝对位置IE7 无法正常工作

发布于 2024-12-21 00:39:40 字数 303 浏览 1 评论 0原文

我有一个为朋友快速整理的网站,显示他们在相对定位的 div 中的绝对定位。

我已经通过 Browserlabs 在大多数浏览器中检查过它,除了 IE6 和 IE6 之外,所有浏览器都可以工作。 IE7。

尽管我尝试了多种方法,但我在这里寻找的内容并没有解决我的问题。

任何帮助将不胜感激。

http://jmcintosh.aisites.com/tara/index.html

I have a quickly put together site for a friend showing them absolute positioned within a relative positioned div.

I've checked it in most browsers through Browserlabs and all work but IE6 & IE7.

What I've looked for out here isn't fixing my issue although I've tried multiple methods.

Any help would be greatly appreciated.

http://jmcintosh.aisites.com/tara/index.html

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

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

发布评论

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

评论(2

雨后咖啡店 2024-12-28 00:39:40

尝试将图像显示为 block 元素:

img {
  display: block;
}

Try displaying your images as block elements:

img {
  display: block;
}
困倦 2024-12-28 00:39:40

我忍不住注意到你在CSS中缺少浏览器兼容性方法,

*{
    margin: 0;
    padding: 0;
 }

我不能说这是否能很好地解决你的问题,但如果不能解决它应该解决其他问题的发生。

I can't help but notice you're missing the browser compatability method in your css

*{
    margin: 0;
    padding: 0;
 }

I can't say if this well fix your problem, but if it doesn't it should towards other problems occurring.

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