Bootstrap class input-group



Using input group you can easily prepend and append text or buttons to the text-based inputs. The same is the usage of input-group class in Bootstrap.

You can try to run the following code to implement the input-group class −

Example

Live Demo

<!DOCTYPE html> <html>    <head>       <title>Bootstrap Example</title>       <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">       <script src = "/scripts/jquery.min.js"></script>       <script src = "/bootstrap/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">                <span class = "input-group-addon">@</span>                <input type = "text" class = "form-control" placeholder = "twitterhandle">             </div>             <br>                       <div class = "input-group">             <input type = "text" class = "form-control">             <span class = "input-group-addon">.00</span>             </div>             <br>                         <div class = "input-group">                <span class = "input-group-addon">$</span>                <input type = "text" class =" form-control">                <span class = "input-group-addon">.00</span>             </div>          </form>       </div>    </body> </html>
Updated on: 2020-06-12T16:07:49+05:30

179 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements