Is there a way to make these flex boxes shrink-wrap?
For example, turning them from:
To:
http://jsfiddle.net/frank_o/35hk7L84/1/
If we were to set flex-direction: row;
, but without them being on the same line.
.main {
display: flex;
flex-direction: column;
/* flex-direction: row; */
}
.other {
color: white;
background: blue;
margin: 10px;
}
<div class="main">
<div class="other">
<p>Hello world</p>
</div>
<div class="other">
<p>Hello other world</p>
</div>
</div>