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
The original checkbox and radio code checkbox
<div class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input" id="customCheck1"> <label class="custom-control-label" for="customCheck1">Check this custom checkbox</label> </div>
radio
<div class="custom-control custom-radio"> <input type="radio" id="customRadio1" name="customRadio" class="custom-control-input"> <label class="custom-control-label" for="customRadio1">Toggle this custom radio</label> </div>
and it generated checkbox
<label class="custom-control custom-checkbox"> <input type="checkbox" name="" id="" value="checkedValue" class="custom-control-input"> <span class="custom-control-indicator"></span> <span class="custom-control-description"></span> </label>
<label class="custom-control custom-radio"> <input type="radio" name="" id="" value="checkedValue" class="custom-control-input"> <span class="custom-control-indicator"></span> <span class="custom-control-description"></span> </label>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The original checkbox and radio code
checkbox
radio
and it generated
checkbox
radio
The text was updated successfully, but these errors were encountered: