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?

left: default situation, middle: goal, right: unwanted composition group

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

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -