Bootstrap 5 Layout Horizontal form label sizing Last Updated : 18 Nov, 2022 Comments Improve Suggest changes Like Article Like Report Bootstrap 5 Layout Horizontal form label sizing is used to set the label of the form input field in different sizes. To set the label size, use the .col-form-label-sm or .col-form-label-lg class to <label> or <legend> tag with the size of .form-control-lg and .form-control-sm. Horizontal form label sizing used Classes: .col-form-label-sm: This class is used to set the size of the form label to small..col-form-label-lg: This class is used to set the size of the form label to large..form-control-sm: This class is used to set the size of the form control to small..form-control-lg: This class is used to set the size of the form control to large. Syntax: <div class="row"> <label for="" class="col-form-label col-form-label-sm"></label> <div class="col-*-*"> <input type="email" class="form-control form-control-sm" id="" placeholder=""> </div> </div> Example 1: In this example, we will create horizontal form labels in different sizes. HTML <!DOCTYPE html> <html> <head> <title>Bootstrap5 Layout Horizontal form label sizing</title> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"> </script> </head> <body> <div class="container text-center"> <h1 class="text-success"> GeeksforGeeks </h1> <h2>Bootstrap5 Layout Horizontal form label sizing</h2> <div class="row"> <label for="username" class="col-sm-2 col-form-label col-form-label-sm">Email</label> <div class="col-sm"> <input type="text" class="form-control form-control-sm" id="username" placeholder="Username/Email" aria-label="Username/Email"> </div> </div> <br> <div class="row"> <label for="password" class="col-sm-2 col-form-label col-form-label-lg">Password</label> <div class="col-lg"> <input type="password" class="form-control form-control-lg" id="password" placeholder="Password" aria-label="Password"> </div> </div> </div> </body> </html> Output: Example 2: In this example, we will create horizontal form labels in different sizes. HTML <!DOCTYPE html> <html> <head> <title>Bootstrap5 Layout Horizontal form label sizing</title> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"> </script> </head> <body> <div class="container text-center"> <h1 class="text-success"> GeeksforGeeks </h1> <h2>Bootstrap5 Layout Horizontal form label sizing</h2> <div class="row"> <label for="fname" class="col-sm-2 col-form-label col-form-label-sm">First Name</label> <div class="col-sm"> <input type="text" class="form-control form-control-sm" id="fname" placeholder="First Name"> </div> </div> <div class="row mt-4"> <label for="lname" class="col-sm-2 col-form-label col-form-label-sm">Last Name</label> <div class="col-sm"> <input type="text" class="form-control form-control-sm" id="lname" placeholder="Last Name"> </div> </div> <div class="row mt-4"> <label for="email" class="col-sm-2 col-form-label col-form-label">Email Id</label> <div class="col-sm"> <input type="email" class="form-control form-control" id="email" placeholder="Last Name"> </div> </div> <div class="row mt-4"> <label for="mobile" class="col-sm-2 col-form-label col-form-label-lg">Mobile No</label> <div class="col-sm"> <input type="tel" class="form-control form-control-lg" id="mobile" placeholder="Last Name"> </div> </div> </div> </body> </html> Output: Reference: https://getbootstrap.com/docs/5.0/forms/layout/#horizontal-form-label-sizing Comment More info V vkash8574 Follow Improve Article Tags : Technical Scripter Web Technologies Bootstrap Technical Scripter 2022 Bootstrap-5 +1 More Explore Bootstrap 5 Tutorial 6 min read Bootstrap 5 Introduction 4 min read LayoutBootstrap 5 Layout Breakpoints 3 min read Bootstrap 5 Layout Containers 3 min read BootStrap 5 Layout Grid System 3 min read Bootstrap 5 Columns 2 min read Bootstrap 5 Gutters 2 min read Bootstrap 5 Utilities 2 min read Bootstrap 5 Z-index 2 min read ContentBootstrap Reboot 2 min read Bootstrap 5 Typography 2 min read Bootstrap 5 Images 1 min read Bootstrap 5 Tables 2 min read Bootstrap 5 Figures 2 min read FormsBootstrap-5 Forms 2 min read Bootstrap 5 Form Controls 2 min read Bootstrap 5 Select 2 min read Bootstrap 5 Checks and Radios 2 min read Bootstrap 5 Range 2 min read Bootstrap 5 Input Group 3 min read Bootstrap 5 Floating labels 2 min read Forms LayoutBootstrap 5 Layout Forms 2 min read Bootstrap5 Layout Utilities 2 min read Bootstrap 5 Layout Form Grid 2 min read Bootstrap 5 Layout Gutters 2 min read Bootstrap 5 Layout Horizontal form 2 min read Bootstrap 5 Layout Horizontal form label sizing 2 min read Bootstrap 5 Layout Column sizing 2 min read Bootstrap 5 Layout Auto-sizing 2 min read Bootstrap 5 Layout Inline forms 2 min read Bootstrap 5 Validation 4 min read ComponentsBootstrap 5 Accordion 3 min read Bootstrap 5 Alerts 2 min read Bootstrap 5 Badges 2 min read Bootstrap Breadcrumb 2 min read Bootstrap 5 Buttons 3 min read Bootstrap 5 | Button group 4 min read Bootstrap 5 | Card 11 min read Bootstrap 5 Carousel 3 min read Bootstrap 5 | Close button 1 min read Bootstrap 5 Collapse 3 min read Bootstrap 5 Dropdowns 9 min read Bootstrap 5 List group 5 min read Bootstrap 5 Modal 7 min read NavbarBootstrap 5 Navbar Brand 3 min read Bootstrap 5 Navbar Brand Text 2 min read Bootstrap Navbar Brand Image 2 min read Bootstrap 5 Navbar Nav 2 min read Bootstrap 5 Navbar Forms 2 min read Bootstrap 5 Navbar Text 2 min read Bootstrap 5 Offcanvas 12 min read Bootstrap 5 Popovers 2 min read Bootstrap 5 Progress 5 min read Bootstrap 5 Scrollspy 4 min read Bootstrap 5 Spinners 3 min read Bootstrap 5 Toasts 3 min read Bootstrap 5 Tooltips 3 min read HelpersBootstrap 5 Clearfix 2 min read Bootstrap 5 Colored links 2 min read Bootstrap 5 Ratios 2 min read Bootstrap 5 Position 2 min read Bootstrap 5 Visually hidden 2 min read Bootstrap 5 Stretched link 2 min read Bootstrap 5 Text Truncation 2 min read ExtendBootstrap 5 Approach 3 min read Bootstrap 5 Icons 2 min read Like