Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 543 Bytes

disabled-attribute.md

File metadata and controls

24 lines (16 loc) · 543 Bytes

Disabled attribute

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>