What fresh hell is THIS now? - Patrick Lauke
for
attribute from the label
aria-hidden
or role=presentation
the suckers
aria-hidden
should hide nested elements, but role=presentation
will only hide roles of required children
E11 is officially still maintained but yeah.
there will not be any a11y fixes - they stated it somewhere
tab
through tabs.
display: none
at the end of a keyframe animation, or use JavaScript
display: none
for animation it will only impact the accessibility tree during the animation
opacity: 0
. It is animatable, but it doesn't affect the accessibility tree. If you use a keyframe animation, you can try setting display
at the beginning or end of it to also impact the accessibility tree but at the right time.
fadeIn
and `fadeOut methods since they will handle display AND animation (assuming all you need is a fade in / fade out animation)