On the contrary, this layout can be used with flexbox, with a slight modification to your layout. Here is a working example: http://codepen.io/timothylong/pen/XRrBBW
HTML:
<main> <section class="large item"> 1 (Large) </section> <div class="small"> <section class="item"> 2 (Small) </section> <section class="item"> 3 (Small) </section> </div> </main>
SCSS:
main { display: flex; flex-flow: row; .item { display: flex; flex: 1; } .large { flex: 0 0 60%; } .small { display: flex; flex-direction: column; } }
The .small
shell allows us to stack the two smaller modules vertically using flex-direction: column
.
source share