我想创建一个带有标题栏的简单框,其中包含标题和一些工具按钮。我有以下标记:
<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
这可以解决吗?