Skip to content

aria-hidden-focusable

Detect aria-hidden on focusable elements.

Severity

error

❌ Incorrect

html
<button aria-hidden="true">x</button>

✅ Correct

html
<div aria-hidden="true">x</div>

Reference

Configuration

json
{
  "rules": {
    "aria-hidden-focusable": "error"
  }
}

Released under the MIT License.