gpt4 book ai didi

css - 在宽度为 :100% IE7 的 div 容器中向左浮动和向右浮动

转载 作者:行者123 更新时间:2023-11-28 12:22:26 25 4
gpt4 key购买 nike

我想在 IE7 的 container-div 中 float 两个 div。容器中的第一个 div 应该向左浮动,第二个向右浮动。实际上,这两个 div 在我的 css 配置中 float 到左侧。

这是我的CSS:

.container {float:left; width:100%; height:30px;}
.left {float:left; width:auto; height:30px;}
.right {float:right; width: auto; height:30px}

这是我的 HTML

<div class="container">
<div class="left">To the Left!</div>
<div class="right">To the Right!</div>
</div>

这应该是结果:(点是这里的空格;))

#-#-#-#-#-#-#-#-#-#-#-#-#-# Container -#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
#-#-
#-#- |~~~~~~~~~~~~|. . . . . . . . . . . . . . . .|~~~~~~~~~~~~~|
#-#- |To The Left | . . . . . . . . . . . . . . .|To the Right |
#-#- |~~~~~~~~~~~~|. . . . . . . . . . . . . . . .|~~~~~~~~~~~~~|
#-#-
#-#-#-#-#-#-#-#-#-#-#-#--#-#-#-#-#-#-#-#-#-#-#-#--#-#-#-#-#-#-#-#-#-#-#-

最佳答案

替换

.container {float:left; width:100%; height:30px;}

.container {width:100%; height:30px;}

你的容器类“float:left;”优先于其他 float 。您也可以将其他类(class)编辑为

.left {clear: both; float:left; width:auto; height:30px;}
.right {clear: both; float:right; width: auto; height:30px;}

在实现新的 float 之前应该清除容器类中剩余的 float 。

关于css - 在宽度为 :100% IE7 的 div 容器中向左浮动和向右浮动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12374089/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com