我正在寻找创建一个流体布局,具有 3 个固定宽度的列和 2 个流体。一共5列。
我玩过“display: table-cell;”,它在 Chrome 中工作,但在 FF 中坏了。
section.how-to .steps { max-width:1400px; width:100%; padding:10px 3%; box-sizing: border-box; height:350px}
section.how-to .steps > div { display: table-cell;}
section.how-to .steps .step { min-width:262px}
section.how-to .steps .filler { height:200px; width:50%}
<section class='how-to'>
<div class="steps">
<div class="step one"></div>
<div class="svg filler"></div>
<div class="step two"></div>
<div class="svg filler"></div>
<div class="step three"></div>
</div>
</section>
任何人都可以建议一种跨浏览器的方法。(Webkit, FF, IE8+)
谢谢凸轮