We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bootstrap 4 docs say to use a form-group https://getbootstrap.com/docs/4.6/components/forms/ e.g
form-group
<div class="form-group"> <label for="exampleInputEmail1">Email address</label> <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp"> </div>
And bootstrap 5 mb3 e.g https://getbootstrap.com/docs/5.0/forms/form-control/
<div class="mb-3"> <label for="exampleFormControlInput1" class="form-label">Email address</label> <input type="email" class="form-control" id="exampleFormControlInput1" placeholder="[email protected]"> </div>
Although purple states bootstrap 5, it seems like it is using bootstrap 4 style forms
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bootstrap 4 docs say to use a
form-group
https://getbootstrap.com/docs/4.6/components/forms/ e.gAnd bootstrap 5 mb3 e.g https://getbootstrap.com/docs/5.0/forms/form-control/
Although purple states bootstrap 5, it seems like it is using bootstrap 4 style forms
The text was updated successfully, but these errors were encountered: