html - Auto-arrange multiple divs vertically in container (not as a group!) -
i've got divs in container, taller these divs combined. want them arranged evenly, not group. image below should explain i'm trying do. there way achieve simple way using bootstrap 3?

you could pure css freakin easy flexbox.
.parent { display: flex; flex-direction: column; justify-content: space-around; } .child { flex: 1 1; } something should work.
Comments
Post a Comment