Ariahidden
aria-hidden is an accessibility attribute defined by the WAI-ARIA specification that indicates whether an element and its subtree should be exposed to assistive technologies such as screen readers. The attribute takes a boolean value: true or false. When aria-hidden="true" is applied to an element, assistive technologies are instructed to ignore the element and all its descendants, effectively removing them from the accessibility tree. When aria-hidden="false" is applied, the element should be exposed again; if the attribute is absent, the element is accessible by default.
aria-hidden is not a visual property and does not affect how content is displayed on screen. It
Cautions and limitations: aria-hidden is not a security measure and should not be used to conceal sensitive
Example: <div aria-hidden="true">Decorative spacer</div> hides that element from screen readers while remaining visible to sighted users.