- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
<!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>
- Related Articles
- Bootstrap class input-group-lg
- Bootstrap well-lg class
- col-lg-* Bootstrap class
- Bootstrap .btn-lg class
- Bootstrap pagination-lg class
- Bootstrap class input-group
- Bootstrap class input-group-sm
- Bootstrap class input-group-xs
- Bootstrap input-group-btn class
- Bootstrap Form Input
- Bootstrap well class
- Bootstrap progress class
- Bootstrap .card class
- Bootstrap .pagination class
- Bootstrap lead class

Advertisements