我想对齐 3 个 div。其中两个具有固定宽度,右边一个具有自动宽度以填充右侧的空白空间。
有什么提示吗?
这是我的例子:
<div id="container" style="width:100%; background-color:Red;">
<div id="left" style="width:100px; height:400px; background-color: yellow; float:left; display:inline-block">
</div>
<div id="center" style="width:600px; height:400px; background-color: blue; float:none; display:inline-block">
</div>
<div class="right" style=" height:400px; width:auto;background-color: green; float:right; display:inline-block">
</div>
</div>