- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Align labels and groups of form controls in a horizontal layout with Bootstrap
Use the .form-horizontal class in Bootstrap to align labels and groups of form controls in a horizontal layout.
You can try to run the following code to implement .form-horizontal 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 class = "form-horizontal" role = "form"> <div class = "form-group"> <label class = "sr-only" for = "name">Name</label> <input type = "text" class = "form-control" id = "name" placeholder = "Enter Name"> </div> <div class = "form-group"> <label class = "sr-only" for = "name">Name</label> <input type = "number" class = "form-control" id = "name" placeholder = "Enter Age"> </div> <button type = "submit" class = "btn btn-primary">Submit</button> </form> </body> </html>
- Related Articles
- Create a form that uses the horizontal layout with Bootstrap
- Bootstrap Horizontal Form
- Bootstrap complex form layout for combined vertical/inline fields with HTML
- Align the components with Bootstrap
- Align media objects with Bootstrap
- Nest button groups with Bootstrap
- Bootstrap Panel with List groups
- Bootstrap Labels
- Align a flex item in the center with Bootstrap 4
- Create three unequal Columns with Bootstrap grid layout
- Create two unequal columns with Bootstrap Grid Layout
- Create Three Equal Columns with Bootstrap grid Layout
- Align Dropdown to the right with Bootstrap
- Align single rows of items in the center with Bootstrap 4
- Align a flex item from the start with Bootstrap 4

Advertisements