对于固定和流动的 CSS 列,是否有可靠的跨浏览器解决方案?我需要一列固定在左侧,另一列在右侧流动。
下面是我的代码片段 -.promoImg
并排.promoContent
浮动。#recommends
是浏览器宽度的 90%,.promoImg
需要固定在 120 像素,我想.promoContent
拉伸流体。
<div class="promoBlock ">
<div class="promoImg">
fixed content 300px
</div>
<div class="promoContent">
fluid content
</div>
</div>