Syntax error Change the size of Bootstrap input groups

Change the size of Bootstrap input groups



Change the size of the input groups, by adding the relative form sizing classes like .input-group-lg, input-group-sm, input-group-xs to the .input-group itself.

You can try to run the following code to change the size of input groups in Bootstrap:

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div style = "padding: 100px 100px 10px;">
         <form class = "bs-example bs-example-form" role = "form">
            <div class = "input-group input-group-lg">
            <span class = "input-group-addon">@</span>
            <input type = "text" class = "form-control" placeholder = "Twitterhandle">
         </div>
         <br>
         <div class = "input-group">
            <span class = "input-group-addon">@</span>
            <input type = "text" class = "form-control" placeholder = "Twitterhandle">
         </div>
         <br>
         <div class = "input-group input-group-sm">
            <span class = "input-group-addon">@</span>
            <input type = "text" class = "form-control" placeholder = "Twitterhandle">
         </div>
      </form>
   </body>
</html>
Updated on: 2020-06-12T16:09:08+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements