Ok, I tried to create a table with input fields. To set the sizes of each field, I realized that I need to set the col-size in the header.
<thead>
<tr>
<th class="col-sm-2">Large</th>
<th class="col-sm-2">Large</th>
<th class="col-sm-1">Small</th>
<th class="col-sm-2">Large</th>
<th class="col-sm-1">Small</th>
<th class="col-sm-2">Large</th>
<th class="col-sm-2">Large</th>
</tr>
</thead>
However, the inputs expand to a maximum width without regard to col size.
http://jsfiddle.net/m79HR/
This may not be the proper use of Bootstrap, but I saw it as the best option for inline inputs with the headers above.
Also, let's say I want this particular grid to have 18 columns instead of the default value of 12, what is possible here only in this particular case?
source
share