Disabled attribute
April 3, 2023 ยท View on GitHub
Rule Details
The attribute disabled is only valid on the following elements: button, input, textarea, option, select, fieldset, optgroup, task-lists.
Resources
Examples
Incorrect code for this rule ๐
<!-- incorrect -->
<a href='https://github.com/' disabled>Go to GitHub</a>
Correct code for this rule ๐
<!-- correct -->
<button disabled>Continue</button>