我想在 IE7 的容器 div 中浮动两个 div。容器中的第一个 div 应该向左浮动,第二个向右浮动。实际上,这两个 div 在我的 css 配置中浮动到左侧。
这是我的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 |
#-#- |~~~~~~~~~~~~|. . . . . . . . . . . . . . . .|~~~~~~~~~~~~~|
#-#-
#-#-#-#-#-#-#-#-#-#-#-#--#-#-#-#-#-#-#-#-#-#-#-#--#-#-#-#-#-#-#-#-#-#-#-