Client has 5 pricing options. I'm using wells to display the price points. since Bootstrap uses columns instead of percentages, is it not possible to create even columns out of the box?
Asked
Active
Viewed 8,795 times
1
-
http://jsbin.com/ulaMiZoz/1 – Christina Nov 28 '13 at 00:10
2 Answers
4
For Boostrap 3
I posted a solution to this that works far better than the selected answer for Bootstrap 3.
Works seamlessly with Bootstrap 3 classes and is completely responsive. it does not leave blank spaces like other solutions. It creates 5 equal columns.
2
Yeah its possible. There is a total of 12
columns to span So if you make each column span 2
and leave 1
column empty on the left and right. Then you can evenly do five columns.
<div class="row">
<div class="col-md-2 col-md-offset-1">1</div>
<div class="col-md-2">2</div>
<div class="col-md-2">3</div>
<div class="col-md-2">4</div>
<div class="col-md-2">5</div>
</div>

Trevor
- 16,080
- 9
- 52
- 83
-
I'll consider this the answer, since the question was "is it possible". You can see the downside of this is the extra spacing that may not match the rest of the design, but again, not included in original question. Visual example: http://www.bootply.com/95654 – drrobotnik Nov 20 '13 at 23:55