html - Bootstrap 3 <div class="col-md-6" not rendering in website -
i making registration form there problem.
<div class="container padding-top-10"> <div class="panel panel-default"> <div class="panel-heading"> registeration </div> <div class="panel-body"> <form> <label for="firstname" class="control-label">name:</label> <div class="row"> <div class="col-md-6"> <input type="text" class="form-control" id="firstname" placeholder="first" /> </div> <div class="col-md-6"> <input type="text" class="form-control" id="lastname" placeholder="last" /> </div> </div> <label for"address1" class="control-label">address:</label> <div class="row"> <div class="col-md-12"> <input type="text" class="form-control" id="address1" placeholder="address line 1" /> </div> </div> <div class="row"> <div class="col-md-12"> <input type="text" class="form-control" id="address2" placeholder="address line 2" /> </div> </div> </form> </div> </div> </div>
however, renders this: how image renders
while want length text input of frist name , last name longer each of takes equal amount of space. , address text input taking whole page stacked on 1 another.
but wasn't rendering wanted be. please me!!!
Comments
Post a Comment