Make Bootstrap input group full width - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

Make Bootstrap input group full width

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">

</style> <!--   www. j  a v a2s.  c o m-->
 </head> 
 <body> 
  <div class="input-group"> 
   <input type="text" class="form-control" aria-label="..."> 
   <div class="input-group-btn"> 
    <select class="form-control" style="width: auto"> <option selected="">Lorem i</option> <option>Lorem i</option> <option>Lorem</option> <option>Lore</option> <option>Lorem</option> </select> 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials