Using twitter bootstrap, I'm trying to figure out why the last "column" wraps.
<div class="row span4 solidBottom">
<div class="span1">
<label>A</label>
</div>
<div class="span1">
<label>B</label>
</div>
<div class="span1">
<label>C</label>
</div>
<div class="span1">
<label>D</label>
</div>
</div>
It results in:
A B C
D
___________
SPAN 4 = 300px
Four Span1s = 240
3 Paddings = 60
240 + 60 = 300
So any clue as to why it wraps?
I'm trying to make multi column forms and would like to keep the columns and rows organized.
Thank you.
EDIT: adding style="width:auto"
to the row solves the problem, but why does the 300px default width wrap?