我在这样的固定标题中有两个 div
HTML
<div id="commit-header_panel">
<div id="commit-header_panel_right" style="float:right;backg..."></div>
<div id="commit-header_panel_left"></div>
<div style="clear:both;"></div>
</div>
CSS
#commit-header_panel
{
background-color: #c5e8fc;
height:74px;
}
#commit-header_panel_left
{
height:74px;
min-width: 630px;
}
#commit-header_panel_right
{
min-width: 573px;
width:expression(document.body.clientWidth < 573? "573px": "auto" );
height:74px;
}
问题是当我将窗口调整为更小的宽度时,右 div 与左 div 相交。
我想要第二个(右浮动)不要落后于左一个。右 div 应该停止向左移动,并让用户在需要时使用浏览器窗口水平滚动条查看右侧部分。
问题