input-lg Bootstrap class



The input-lg is used to set the height of forms in Bootstrap.

You can try to run the following code to implement the input-lg Bootstrap 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>       <form role = "form">          <div class = "form-group">             <input class = "form-control input-lg" type = "text" placeholder =".input-lg">          </div>          <div class = "form-group"></div>          <div class = "form-group">             <select class = "form-control input-lg">                <option value = "">.input-lg</option>             </select>          </div>       </form>    </body> </html>
Updated on: 2020-06-12T13:48:36+05:30

508 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements