Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个具有全高的 div,一个在左侧,一个在右侧,右侧的一个必须为 250px 宽度,左侧的一个必须填充剩余区域(流体)。
可以做到吗?如果只有宽度:100% - 250px;工作吧?
只需将 250px 的一个浮动到右侧,然后将右边距扩展为 250px 的那个。
<div class="right"> Some right content </div> <div class="main"> Some main content </div>
.right { width: 250px; float: right; } .main { margin-right: 250px; }
请参阅 jsFiddle。
如果一个比另一个大,那不会将它们的高度扩大到相同,但我认为你已经涵盖了,不是吗?