CSS   发布时间:2022-04-17  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了css – IE7中的奇怪的浮动行为大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我想创建一个包含标题和一些工具按钮的标题栏的简单框.我有以下标记:
<div style="float:left">
    <div style="BACkground-color:blue; padding: 1px; height: 20px;">
        <div style="float: left; BACkground-color:green;">title</div>
        <div style="float: right; BACkground-color:yellow;">toolbar</div>
    </div>
    <div style="clear: both; width: 200px; BACkground-color: red;">content</div>
</div>

这可以在Firefox和Chrome中显示出来:

http://www.boplicity.nl/images/firefox.jpg

然而,IE7完全混乱,将正确的浮动元素放在页面右侧:

http://www.boplicity.nl/images/ie7.jpg

这可以解决吗?

解决方法

指定最外层的宽度.
如果您的内容div中的宽度意味着这是您的框的总宽度,只需将其添加到最外层的div,并(可选)从内容中删除它,如下所示:
<div style="float:left; width: 200px;">
    <div style="BACkground-color:blue; padding: 1px; height: 20px;">
        <div style="float: left; BACkground-color:green;">title</div>
        <div style="float: right; BACkground-color:yellow;">toolbar</div>
    </div>
    <div style="clear: both; BACkground-color: red;">content</div>
</div>

大佬总结

以上是大佬教程为你收集整理的css – IE7中的奇怪的浮动行为全部内容,希望文章能够帮你解决css – IE7中的奇怪的浮动行为所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。