我在父 div 中有两个 div(并排),我希望右 div 占据 100% 的剩余空间(即 100% - 200px)并且应该始终保持在左 div 旁边(不低于左 div):
<div id="wrapper" style="width: 100%;">
<div id="left" style="background-color: Blue; height: 100px; float: left; width: 200px;"></div>
<div id="right" style="background-color: Aqua; height: 100px; float: left; width: 100%;"></div>
<div style="clear: both;"></div>
</div>