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+)
ありがとうカム