ne3zy
KPCKevin Powell - Community
•Created by ne3zy on 2/11/2025 in #front-end
Is it OK to hide an item using `opacity`, `pointer-events`, `aria-hidden` and `tabindex` ?
Can you hide an item using
opacity: 0
+ pointer-events: none
+ aria-hidden="true"
+ tabindex="-1"
instead of using display: none
or the hidden
attribute ?
Specifically in the context of accessible tabs: https://youtu.be/fI9VM5zzpu814 replies