css - Bootstrap input inside column -
i have html this
<div class="col-lg-4"><input type="text"></div>
how can make input width stretched @ column size?
put class form-control
input element.
<div class="col-lg-4"> <input class="form-control" type="text"> </div>
Comments
Post a Comment