My excitement was palpable when I learned that Bootstrap 4 would be implementing flexbox for a grid system. I anticipated the fast and efficient element sizing capabilities that flexbox offers. However, it appears that Bootstrap 4 simply enhances the existing 12-column grid system with some additional functionality.
Does Bootstrap 4 simplify relating column widths in layouts with fewer than 12 columns?
Just like how flexboxes can easily relate to each other by specifying the horizontal space division using properties like flex-grow
, flex-shrink
, and flex-basis
.
[1:5][-----3:5-----][1:5]
This could be achieved with a straightforward flex:3;
on the col2 item. However, it still seems unattainable in Bootstrap 4. Am I overlooking something?