Skip to content

Commit

Permalink
Add post #21
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlaki committed Oct 12, 2023
1 parent a3641a3 commit e15ec6f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions src/posts/the-first-rule-of-aria.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: 'The First Rule of ARIA'
summary: 'The Accessible Rich Internet Applications specification is a powerful tool that can help us tackle the accessible problems on the web.'
socialImage: '/img/social-thumbnails/the-first-rule-of-aria.png'
date: '2023-06-23'
issue: 21
tags: ['aria']
github: 'https://github.com/conedevelopment/bite-sized-a11y/blob/master/src/posts/the-first-rule-of-aria.md'
resources:
- title: '2.1 First Rule of ARIA Use'
url: 'https://www.w3.org/TR/using-aria/#firstrule'
---

The Accessible Rich Internet Applications specification is a powerful tool that can help us tackle the accessible problems on the web.

It is quite complicated, hard to master, and easy to miss or overuse. For this reason, we always have to remember the first rule of ARIA:

**If there is a built-in, native HTML element or attribute that already does the same thing you want to use ARIA (through re-purposing an element) for, then use the native solution.**

Following this principle, you can save yourself from a lot of headaches. There is rarely a universal solution, so testing is as necessary as any other time.

0 comments on commit e15ec6f

Please sign in to comment.