Give your Forms some structure—from inline to horizontal to custom grid implementations—with our form layout options.
Bootstrap Forms
Every group of form fields should reside in a <form> element. Bootstrap provides no default styling for the <form> element, but there are some powerful browser features that are provided by default.
<button>s within a <form> default to type="submit", so strive to be specific and always include a type.
You can disable every form element within a form with the disabled attribute on the <form> .
Bootstrap Layout Utilities
Feel free to build your forms however you like, with <fieldset>s, <div>s, or nearly any other element.
<!doctype html><htmllang="en"><head><metacharset="utf-8"><metaname="viewport"content="width=device-width, initial-scale=1"><linkhref="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"rel="stylesheet"><linkhref="https://getbootstrap.com/docs/5.2/assets/css/docs.css"rel="stylesheet"><title>Bootstrap Example</title><scriptsrc="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script></head><bodyclass="p-3 m-0 border-0 bd-example"><formclass="row g-3"><divclass="col-md-6"><labelfor="inputEmail4"class="form-label">Email</label><inputtype="email"class="form-control"id="inputEmail4"></div><divclass="col-md-6"><labelfor="inputPassword4"class="form-label">Password</label><inputtype="password"class="form-control"id="inputPassword4"></div><divclass="col-12"><labelfor="inputAddress"class="form-label">Address</label><inputtype="text"class="form-control"id="inputAddress"placeholder="Abc Main St"></div><divclass="col-12"><labelfor="inputAddress2"class="form-label">Address 2</label><inputtype="text"class="form-control"id="inputAddress2"placeholder="Apartment, studio, or floor"></div><divclass="col-md-6"><labelfor="inputCity"class="form-label">City</label><inputtype="text"class="form-control"id="inputCity"></div><divclass="col-md-4"><labelfor="inputState"class="form-label">State</label><selectid="inputState"class="form-select"><optionselected="">Choose...</option><option>...</option></select></div><divclass="col-md-2"><labelfor="inputZip"class="form-label">Zip</label><inputtype="text"class="form-control"id="inputZip"></div><divclass="col-12"><divclass="form-check"><inputclass="form-check-input"type="checkbox"id="gridCheck"><labelclass="form-check-label"for="gridCheck">
Check me out
</label></div></div><divclass="col-12"><buttontype="submit"class="btn btn-primary">Sign in</button></div></form></body></html>
Output
Bootstrap Layout Horizontal Form
Create horizontal forms with the grid by adding the .row class to form groups and using the .col-*-* classes to specify the width of your labels and controls. Be sure to add .col-form-label to your <label>s as well so they’re vertically centered with their associated form controls.
At times, you maybe need to use margin or padding utilities to create that perfect alignment you need. For example, we’ve removed the padding-top on our stacked radio inputs label to better align the text baseline.
Sample Code
<!doctype html><htmllang="en"><head><metacharset="utf-8"><metaname="viewport"content="width=device-width, initial-scale=1"><linkhref="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"rel="stylesheet"><linkhref="https://getbootstrap.com/docs/5.2/assets/css/docs.css"rel="stylesheet"><title>Bootstrap Example</title><scriptsrc="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script></head><bodyclass="p-3 m-0 border-0 bd-example"><form><divclass="row mb-3"><labelfor="inputEmail3"class="col-sm-2 col-form-label">Email</label><divclass="col-sm-10"><inputtype="email"class="form-control"id="inputEmail3"></div></div><divclass="row mb-3"><labelfor="inputPassword3"class="col-sm-2 col-form-label">Password</label><divclass="col-sm-10"><inputtype="password"class="form-control"id="inputPassword3"></div></div><fieldsetclass="row mb-3"><legendclass="col-form-label col-sm-2 pt-0">Radios</legend><divclass="col-sm-10"><divclass="form-check"><inputclass="form-check-input"type="radio"name="gridRadios"id="gridRadios1"value="option1"checked=""><labelclass="form-check-label"for="gridRadios1">
First radio
</label></div><divclass="form-check"><inputclass="form-check-input"type="radio"name="gridRadios"id="gridRadios2"value="option2"><labelclass="form-check-label"for="gridRadios2">
Second radio
</label></div><divclass="form-check disabled"><inputclass="form-check-input"type="radio"name="gridRadios"id="gridRadios3"value="option3"disabled=""><labelclass="form-check-label"for="gridRadios3">
Third disabled radio
</label></div></div></fieldset><divclass="row mb-3"><divclass="col-sm-10 offset-sm-2"><divclass="form-check"><inputclass="form-check-input"type="checkbox"id="gridCheck1"><labelclass="form-check-label"for="gridCheck1">
Example checkbox
</label></div></div></div><buttontype="submit"class="btn btn-primary">Sign in</button></form></body></html>
Output
Bootstrap Layout Horizontal form label sizing
Be sure to use .col-form-label-sm or .col-form-label-lg to your <label>s or <legend>s to correctly follow the size of .form-control-lg and .form-control-sm.
As shown in the previous examples, our grid system allows you to place any number of .cols within a .row. They’ll split the available width equally between them. You may also pick a subset of your columns to take up more or less space, while the remaining .cols equally split the rest, with specific column classes like .col-sm-7.
The example below uses a flexbox utility to vertically center the contents and changes .col to .col-auto so that your columns only take up as much space as needed. Put another way, the column sizes itself based on the contents.