DEV Community

Discussion on: 🚀 Svelte Quick Tip: Creating a toast notification system

Collapse
 
justingolden21 profile image
Justin Golden

What about simply giving the button a title of "close?" That would be accessible for screen readers and assistive tech right?

Collapse
 
geoffrich profile image
Geoff Rich

If you want to do it using an attribute, aria-label="Close" would be preferable to title, since title is inconsistently announced by screen readers. However, visually hidden text (the technique above) is more likely to be translated.

Thread Thread
 
justingolden21 profile image
Justin Golden

Got it, thank you.