Which ARIA practice is correct?
- A Add role="button" to every clickable element
- B Prefer native semantic HTML and use ARIA only when no native element fits
- C Use ARIA attributes on every element
- D ARIA replaces the need for keyboard support
Answer
Prefer native semantic HTML and use ARIA only when no native element fits
The first rule of ARIA is not to use ARIA when a native element will do. Incorrect ARIA is worse than none because it misinforms assistive technology.





