Is it required to use col-sm-9 to make 12 col in second div or I can use col-sm-4 to make input field small.Is there other way to make input field small in bootstrap form class="form-horizontal".
<form class="form-horizontal">
<div class="form-group">
<label for="label" class="col-sm-3 control-label">Label</label>
<div class="col-sm-9">
<input class="form-control textLabel" type="text" id="label" autocomplete="off"/>
</div>
</div>
</form>
<div class="clearfix"></div>
after the col-X-4 – Christina