- 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
Set heights and widths of forms with Bootstrap
Use classes like .input-lg and .col-lg-* to set the height and width of forms.
Example
You can try to run the following code to set the form height and width −
<!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"> <input class = "form-control" type = "text" placeholder = "Default input"> </div> <div class = "form-group"> <input class = "form-control input-sm" type = "text" placeholder = ".input-sm"> </div> <div class = "form-group"></div> <div class = "form-group"> <select class = "form-control input-lg"> <option value = "">.input-lg</option> </select> </div> <div class = "form-group"> <select class = "form-control"> <option value = "">Default select</option> </select> </div> <div class = "form-group"> <select class = "form-control input-sm"> <option value = "">.input-sm</option> </select> </div> <div class = "row"> <div class = "col-lg-2"> <input type = "text" class = "form-control" placeholder = ".col-lg-2"> </div> <div class = "col-lg-3"> <input type = "text" class = "form-control" placeholder = ".col-lg-3"> </div> <div class = "col-lg-4"> <input type = "text" class = "form-control" placeholder = ".col-lg-4"> </div> </div> </form> </body> </html>
- Related Articles
- How to set the widths of the image border with JavaScript?
- Flex items into equal widths on different screens with Bootstrap 4
- Forms of Bootstrap Media Objects
- Set the width and margin of the modal with Bootstrap
- Set disabled links with Bootstrap
- Set Bootstrap Panel with Heading
- Set Bootstrap Panel with Footer
- Set element to center with Bootstrap
- Set a pill menu with Bootstrap
- Make a set of buttons appear vertically with Bootstrap
- Set Menus to drop up with Bootstrap
- Set a dropup menu upwards with Bootstrap
- Set key content with Bootstrap 4 card
- Sum of Subsequence Widths in C++
- Set less important content with Bootstrap 4 card

Advertisements