# ember/template-no-aria-hidden-body 💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations). 🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix). The aria-hidden attribute should never be present on the `` element, as it hides the entire document from assistive technology. ## Examples This rule **forbids** the following: ```hbs ``` ```hbs ``` This rule **allows** the following: ```hbs ``` ## References - [Using the aria-hidden attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-hidden_attribute) - [How Lighthouse identifies hidden body elements](https://web.dev/aria-hidden-body/) - [WCAG 4.1.2 - Name, Role, Value (Level A)](https://www.w3.org/TR/WCAG21/#name-role-value)