Hello Dear Readers, Today In this Post, You will learn Bootstrap 5 Tutorial In Hindi #29 | Bootstrap 5 Input Group & Floating. Earlier I have shared the Bootstrap 5 Tutorial In Hindi #28 | Checkbox Radio & Range. and now it’s time to Bootstrap 5 Input Group & Floating.
In this tutorial, You will learn full Bootstrap 5. If you want to go deep into the tutorial so you can watch the full video which is below Hope it will help you all thank you for visiting.
In this tutorial, you will learn Bootstrap Tutorial In Hindi, Bootstrap 5 Input Group & Floating.
Here You can learn what is a bootstrap framework, what are the advantages of the bootstrap tutorial in Hindi. Make sure to Subscribe, Share the video, and Like it, for more tutorials in Hindi like this one!
Floating labels
Create beautifully simple form labels that float over your input fields.
Example
Wrap a pair of <input class="form-control">
and <label>
elements in .form-floating
to enable floating labels with Bootstrap’s textual form fields. A placeholder
is required on each <input>
as our method of CSS-only floating labels uses the :placeholder-shown
pseudo-element. Also note that the <input>
must come first so we can utilize a sibling selector (e.g., ~
).
When there’s a value
already defined, <label>
s will automatically adjust to their floated position.
Selects
Other than .form-control
, floating labels are only available on .form-select
s. They work in the same way, but unlike <input>
s, they’ll always show the <label>
in its floated state. Selects with size
and multiple
are not
Input group
Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs, custom selects, and custom file inputs.
Basic example
Place one add-on or button on either side of an input. You may also place one on both sides of an input. Remember to place <label>
s outside the input group.
Wrapping
Input groups wrap by default via flex-wrap: wrap
in order to accommodate custom form field validation within an input group. You may disable this with .flex-nowrap
.
Sizing
Add the relative form sizing classes to the .input-group
itself and contents within will automatically resize—no need for repeating the form control size classes on each element.
Checkboxes and radios
Place any checkbox or radio option within an input group’s addon instead of text. We recommend adding .mt-0
to the .form-check-input
when there’s no visible text next to the input.
Multiple inputs
While multiple <input>
s are supported visually, validation styles are only available for input groups with a single <input>
.