You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 17, 2025. It is now read-only.
"description": "Examples and usage guidelines for form control styles, layout options, and custom components for creating a wide variety of forms.",
"usage": "Default checkboxes and radios are improved upon with the help of .form-check, a single class for both input types that improves the layout and behavior of their HTML elements. Checkboxes are for selecting one or several options in a list, while radios are for selecting one option from many.\r\n\r\nDisabled checkboxes and radios are supported, but to provide a not-allowed cursor on hover of the parent , you\u2019ll need to add the .disabled class to the parent .form-check. The disabled class will also lighten the text color to help indicate the input\u2019s state.",
"snippet": "<div class=\"form-check\">\r\n <label class=\"form-check-label\">\r\n <input class=\"form-check-input\" type=\"checkbox\" value=\"\">\r\n Option one is this and that\u2014be sure to include why it's great\r\n <\/label>\r\n<\/div>",