一个液体 div 和一个固定大小的 div
我正在尝试构建一个布局,其中有一个固定宽度的 div 和旁边有一个液体宽度的 div:
<div id="main" style="width:100%; height:500px; background-color: #ccc;">
<div id="right" style="float: right; width:100px; height:500px; background-color: red;">
</div>
<div id="left" style="float: right; width: auto; height:500px; background-color: orange;">
</div>
</div>
左侧 div 没有填充其宽度,我也希望这个 div 在右侧 div 不存在时填充整个主 div,我怎样才能做吗?
I am trying to build a layout which has a fixed width div and a liquid width div beside it :
<div id="main" style="width:100%; height:500px; background-color: #ccc;">
<div id="right" style="float: right; width:100px; height:500px; background-color: red;">
</div>
<div id="left" style="float: right; width: auto; height:500px; background-color: orange;">
</div>
</div>
the left div is not filling its width, also i want this div to fill whole main div when right div is not present, how can i do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你想要的更像是
I think what you want is more like