Form Inputs

Input types
Text
Usage type="text"
Email
Usage type="email"
Password
Usage type="password"
Number
Usage type="number"
Search
Usage type="search"
URL
Usage type="url"
Tel
Usage type="tel"
File
Usage type="file"
Date & Time
Usage type="datetime-local"
Date
Usage type="date"
Time
Usage type="time"
Week
Usage type="week"
Month
Usage type="month"
Range
Usage type="range"
Color
Usage type="color"
Input type Properties
Placeholder text
Usage placeholder="....."
Readonly
Usage readonly
Disabled
Usage disabled
Static Value
Usage .form-control-plaintext
Default Value
Usage value="....."
Min Value
Usage minLength="....."
Max Value
Usage maxLength="....."
Helper text
Usage .form-text
Helper Text
Textarea
Usage textarea
Select
Default Select
Usage select
Multiple Select
Usage multiple
Input type with different sizes
Default Size
Usage .form-control-md
Small Size
Usage .form-control-sm
Large Size
Usage .form-control-lg
Grid Sizes
Usage .col-sm-4
Custom Range
Default Range
Create custom <input type="range"> controls with .custom-range. The track (the background) and thumb (the value) are both styled to appear the same across browsers. As only IE and Firefox support “filling” their track from the left or right of the thumb as a means to visually indicate progress, we do not currently support it.
Min Max Range
Range inputs have implicit values for min and max0 and 100, respectively. You may specify new values for those using the min and max attributes.
Steps Range
By default, range inputs “snap” to integer values. To change this, you can specify a step value. In the example below, we double the number of steps by using step="0.5".
Checkboxes
Default Checkbox
By default, any number of checkboxes and radios that are immediate sibling will be vertically stacked and appropriately spaced with .form-check.
Custom Checkbox
Each checkbox and radio is wrapped in a <div> with a sibling <span> to create our custom control and a <label> for the accompanying text. Structurally, this is the same approach as our default .form-check.
Inline Checkbox
Group checkboxes or radios on the same horizontal row by adding .form-check-inline to any .form-check.
Custom Inline Checkbox
Group checkboxes or radios on the same horizontal row by adding .custom-control-inline.
Radios
Default Radios
By default, any number of checkboxes and radios that are immediate sibling will be vertically stacked and appropriately spaced with .form-check.
Custom Radios
Each checkbox and radio is wrapped in a <div> with a sibling <span> to create our custom control and a <label> for the accompanying text. Structurally, this is the same approach as our default .form-check.
Inline Radios
Group checkboxes or radios on the same horizontal row by adding .form-check-inline to any .form-check.
Custom Inline Radios
Group checkboxes or radios on the same horizontal row by adding .custom-control-inline.

© 2020 Booster - All Rights Reserved.