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
๋ฅผ ํตํด ํ์ด์ง ์ ๋ชจ๋ ์์์ ๋ํ ์ ๊ทผ์ฑ ํธ๋ฆฌ๋ฅผ ์์ ๊ฐ๋ฅํฉ๋๋ค.

Reference
Last updated