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

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

Nuget pack csproj using nuspec -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -