WAI-ARIA, or ARIA

Web Accessibility Initiative's Accessible Rich Internet Applications specification

  • ๋„ค์ดํ‹ฐ๋ธŒ HTML๋งŒ์œผ๋กœ ๋‹ค๋ฃฐ ์ˆ˜ ์—†๋Š” ์ ‘๊ทผ์„ฑ(Accessibility) ๋ฌธ์ œ๋ฅผ ํ•ด๊ฒฐํ•ฉ๋‹ˆ๋‹ค.

<!-- Example #1 -->
<li tabindex="0" class="checkbox" role="checkbox" checked aria-checked="true">
  Receive promotional offers
</li>
<!-- Example #2 -->
<button type="button" aria-label="Close">X</button>
<!-- Example #3 -->
<span id="night-mode-label">Night mode</span>
<span
  role="switch"
  aria-checked="false"
  tabindex="0"
  aria-labelledby="night-mode-label"
></span>
<!-- OR -->
<label for="night-mode">Night mode</label>
<input type="checkbox" role="switch" id="night-mode" />
  • ARIA๋ฅผ ํ†ตํ•ด ํŽ˜์ด์ง€ ์ƒ ๋ชจ๋“  ์š”์†Œ์— ๋Œ€ํ•œ ์ ‘๊ทผ์„ฑ ํŠธ๋ฆฌ๋ฅผ ์ˆ˜์ • ๊ฐ€๋Šฅํ•ฉ๋‹ˆ๋‹ค.

DOM+ARIA

Reference

WAI-ARIA | W3

WAI-ARIA Authoring Practices

ARIA | MDN

ARIA Roles | MDN

ARIA Labels and Relationships

๋ ˆ์ง„ WAI-ARIA ๊ฐ€์ด๋“œ๋ผ์ธ ์†Œ๊ฐœ

Last updated