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

  • HTML attribute: disabled

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>

Contents

  1. 1Rule Details
  2. 2Resources
  3. 3Examples
  4. 3.1Incorrect code for this rule ๐Ÿ‘Ž
  5. 3.2Correct code for this rule ๐Ÿ‘