Reputation: 91
I have 7 elements, I want to show all of them side by side with equal width. I am using bootstrap grid system to place it properly. I can't divide 7 elements into 12 column equally.
Is there anyway that I can create col-lg-14 on my own ?
Upvotes: 2
Views: 5950
Reputation: 1889
Why don't you use these classes: d-flex and then flex-fill for the 7 children?
Upvotes: 3
Reputation: 15730
Yes, quite easily. Change @grid-columns to 14 instead of the default, 12, here: http://getbootstrap.com/customize/#grid-system
Then download this custom boostrap and include it in your head
instead of the stock bootstrap.
Upvotes: 6