我想在响应式行布局中将 3 个图像放在一个图像旁边,但我不知道如何使该行的内容高度相等。如果像“大图像应该是 900x1200 像素,3 个小图像应该是 300x500 像素”这样简单,我可以制作任何尺寸的图像,我也为此使用了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>