边距和填充导致计算布局问题
我遇到了这个问题,在 IE6 中我没有得到真正的偏移量。 我正在使用偏移量来定位弹出窗口。
CSS 是这样的:
.container50-50-right-border { }
.container50-50-right-border .title {padding: 0px; margin: 0px;
clear: both;}
.container50-50-right-border .leftcolumn {width: 47%; float: left;
display:inline;}
.container50-50-right-border .rightcolumn {width: 48%; float: left;
display:inline;
border-left: 1px solid #D6D7DE;
padding: 0px 0px 0px 10px;
margin: 0px 0px 0px 10px;}
.container50-50-right-border .description {clear: both;}
当我删除填充和边距时,
.container50-50-right-border .rightcolumn
它的表现会好一点,但并不完美。 定位代码已经过充分测试,所以我不认为是这样。
对于代码量稀疏表示抱歉。 任何帮助,将不胜感激。
I am having this issue where I am not getting the true offset in IE6. I am using the offset to position a pop-in.
The CSS is something like this:
.container50-50-right-border { }
.container50-50-right-border .title {padding: 0px; margin: 0px;
clear: both;}
.container50-50-right-border .leftcolumn {width: 47%; float: left;
display:inline;}
.container50-50-right-border .rightcolumn {width: 48%; float: left;
display:inline;
border-left: 1px solid #D6D7DE;
padding: 0px 0px 0px 10px;
margin: 0px 0px 0px 10px;}
.container50-50-right-border .description {clear: both;}
when I remove the padding and margin from the
.container50-50-right-border .rightcolumn
it behaves a little better but not perfectly. The positioning code is well tested so I don't think it's that.
Sorry for the sparse amount of code. Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请记住,IE 将根据其所处的渲染模式(怪异模式与标准模式)切换盒子模型。 验证您使用的 Doctype 是否将 IE 置于严格模式,否则它用于定位的盒模型将不是标准的 W3C 模型。
http://www.quirksmode.org/css/quirksmode.html
Keep in mind, IE will switch box-models based on what rendering mode it is in (Quirks mode vs Standards mode). Verify that the Doctype you are using is putting IE into Strict mode, else the box model it uses for positioning will not be the standard W3C model.
http://www.quirksmode.org/css/quirksmode.html
我用你的 CSS、你评论中的 javascript 和一些编写的 HTML 做了一个简单的测试来测试这个。 我添加了
showDiv
函数来测试我在 IE6 中测试的,它的位置很好。 您能否提供更多代码,也许是 HTML 和 JavaScript?
I did a simple test with your CSS, the javascript from your comment, and some made up HTML to test this. I added the
showDiv
function to testI tested in IE6, it positioned fine. Can you give some more code, perhaps the HTML and JavaScript?