-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |