ioc.exchange is one of the many independent Mastodon servers you can use to participate in the fediverse.
INDICATORS OF COMPROMISE (IOC) InfoSec Community within the Fediverse. Newbies, experts, gurus - Everyone is Welcome! Instance is supposed to be fast and secure.

Administered by:

Server stats:

1.3K
active users

#frontend

56 posts38 participants1 post today

Here’s a question for front-end developers about accessibility.

If you hide an element with “aria-hidden,” the element and all of its children are hidden from screen readers. If one of those child elements is an image, the alt text is moot because a screen reader will ignore it.

Example:

<button aria-hidden="true">
<img src="/img/icon.svg">
</button>

Do you: