ie中的位置:绝对和位置:相对问题

发布于 2024-10-22 07:06:46 字数 629 浏览 3 评论 0原文

我有一个问题。请参阅下面的代码。

<div style="position:relative; overflow:hidden; width:120px;">
  <div style="position:absolute; left:0px;">Content</div>
  <div style="position:absolute; left:40px;">Content</div>
  <div style="position:absolute; left:80px;">Content</div>
</div>

问题是,在 Firefox 中,它工作正常;但是当我在 ie-8 中运行这段代码时,它出现了问题。所有带有position:absolute的div都是40px宽。他们应该只是简单地达到我分配给他们的位置。在 ie 中,带有 position:absolute 的第二个 div 占用双倍左空格。它将第一个 div 计算为 40px,然后再计算 40px。它应该只从相对定位的 div 左侧获取 40px 。有人可以帮忙吗?

I have a problem. See the code below please.

<div style="position:relative; overflow:hidden; width:120px;">
  <div style="position:absolute; left:0px;">Content</div>
  <div style="position:absolute; left:40px;">Content</div>
  <div style="position:absolute; left:80px;">Content</div>
</div>

The problem is, that in firefox, its working fine; but when i run this code in ie-8, it gives problem. All the divs with position:absolute are 40px wide. they should just simply attain the position i assign them to. In ie, the 2nd div with position:absolute take double left-space. It counts the first div to be of 40px and then counts 40px more. It should just take 40px from the relatively positioned div's left side. Can somebody help please?

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

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

发布评论

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

评论(2

傲娇萝莉攻 2024-10-29 07:06:46

它在 ie7 和 ie7 中按预期工作。即8。并删除溢出:隐藏,因为它隐藏了所有内容。看看这里的边框效果如何: http://jsfiddle.net/uWkJ7/1/
所有 div 都会扩展到其内容宽度。

It works as expected in ie7 & ie8. And drop that overflow: hidden, because it hides everything. Look here how it all looks with border: http://jsfiddle.net/uWkJ7/1/
All divs expand to their content width.

爱的故事 2024-10-29 07:06:46

在“非布局”元素中,不会触发 hasLayout,即没有维度的纯 div 可以是“非布局祖先”。

In “non-layout” elements, hasLayout is not triggered, i.e. a pure div without a dimension can be a “non-layout ancestor”.

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