web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
514 B

  1. # html-has-lang
  2. <html> elements must have the lang prop.
  3. ## Rule details
  4. This rule takes no arguments.
  5. ### Succeed
  6. ```jsx
  7. <html lang="en">
  8. <html lang="en-US">
  9. <html lang={language}>
  10. ```
  11. ### Fail
  12. ```jsx
  13. <html>
  14. ```
  15. ## Accessibility guidelines
  16. - [WCAG 3.1.1](https://www.w3.org/WAI/WCAG21/Understanding/language-of-page)
  17. ### Resources
  18. - [axe-core, html-has-lang](https://dequeuniversity.com/rules/axe/3.2/html-has-lang)
  19. - [axe-core, html-lang-valid](https://dequeuniversity.com/rules/axe/3.2/html-lang-valid)