Bootstrap Horizontal Form


To create a horizontal form in Bootstrap, follow the below steps −

  •  Add a class of .form-horizontal to the parent <form> element.
  •  Wrap labels and controls in a <div> with class .form-group.
  •  Add a class of .control-label to the labels.

You can try to run the following code to create a horizontal form in Bootstrap −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <form class = "form-horizontal" role = "form">
         <div class = "form-group">
            <label for = "firstname" class = "col-sm-2 control-label">First Name</label>
            <div class = "col-sm-10">
               <input type = "text" class = "form-control" id = "firstname" placeholder = "Enter First Name">
            </div>
         </div>
         <div class = "form-group">
            <label for = "lastname" class = "col-sm-2 control-label">Last Name</label>
            <div class = "col-sm-10">
               <input type = "text" class = "form-control" id = "lastname" placeholder = "Enter Last Name">
            </div>
         </div>
         <div class = "form-group">
            <div class = "col-sm-offset-2 col-sm-10">
               <div class = "checkbox">
                  <label><input type = "checkbox"> Remember me</label>
               </div>
            </div>
         </div>
         <div class = "form-group">
            <div class = "col-sm-offset-2 col-sm-10">
               <button type = "submit" class = "btn btn-default">Sign in</button>
            </div>
         </div>
      </form>
   </body>
</html>

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 12-Jun-2020

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements