"Two Column Form Layout"
Bootstrap 3.3.0 Snippet by xepressway

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <form role="form"> <div class="form-group col-xs-10 col-sm-4 col-md-4 col-lg-4"> <label for="exampleInputEmail1">Email address</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email"> </div> <div class="form-group col-xs-10 col-sm-4 col-md-4 col-lg-4"> <label for="exampleInputEmail1">Name</label> <input type="text" class="form-control" id="exampleInputEmail1" placeholder="Enter Name"> </div> <div class="clearfix"></div> <div class="form-group col-xs-10 col-sm-4 col-md-4 col-lg-4"> <label for="exampleInputPassword1">Password</label> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> </div> <div class="form-group col-xs-10 col-sm-4 col-md-4 col-lg-4"> <label for="exampleInputPassword1">Confirm Password</label> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Confirm Password"> </div> <div class="clearfix"></div> <div class="form-group col-xs-10 col-sm-10 col-md-4 col-lg-4"> <label for="exampleInputFile">File input</label> <input type="file" id="exampleInputFile"> <p class="help-block">Example block-level help text here.</p> </div> <div class="col-xs-10 col-sm-10 col-md-4 col-lg-4"> <label> <input type="radio"> Check me out<input type="radio"> Check me out<input type="radio"> Check me out </label> </div> <div class="clearfix"></div> <div class="col-xs-10 col-sm-4 col-md-4 col-lg-4"> <button type="submit" class="btn btn-default">Submit</button> </div> </form> <div class="clearfix"></div> <br /><br /> </div> </div>

Related: See More


Questions / Comments: