eslint-plugin-lit-a11y
Version:
linting plugin for lit-a11y
24 lines (15 loc) • 351 B
Markdown
# heading-hidden
Headings must not be hidden from screenreaders
## Rule Details
Examples of **incorrect** code for this rule:
```js
html`
<h1 aria-hidden="true>hello</h1>
`;
```
Examples of **correct** code for this rule:
```js
html` <h1>hello</h1> `;
```
## Further Reading
- [Deque](https://dequeuniversity.com/rules/axe/4.6/empty-heading)