レスポンシブ行レイアウトで 1 つの画像の隣に 3 つの画像を配置したいのですが、この行の内容を同じ高さにする方法がわかりません。「大きな画像は900x1200px、3つの小さな画像は300x500px」のように単純であれば、画像を任意のサイズにすることができます。これにもfoundation4を使用しています。画像も少しトリミングまたは引き伸ばすことができます。
<div id="image_box">
<div class="col">
<img src ="http://placehold.it/200x100" />
<img src ="http://placehold.it/200x100" />
<img src ="http://placehold.it/200x100" />
</div>
<div class="col">
<img src ="http://placehold.it/200x350" />
</div>
</div>