ARIA Properties
ARIA properties are special attributes that web authors add to page elements to give assistive technologies, such as screen readers, extra information about how those elements behave and relate to one another. They are part of WAI-ARIA, a set of specifications published by the W3C to help make rich, interactive web content more accessible. Some ARIA properties apply only to specific roles, while others, known as global attributes, can apply to any element.
In the WAI-ARIA specification, properties are a category of ARIA attributes that expose semantic information about an element to the accessibility API, generally describing characteristics or relationships that are less likely to change during the element's lifecycle than ARIA states. ARIA states and properties together supply supplemental semantics for user interface components, and per MDN some are defined as 'Global' attributes that apply to all HTML elements regardless of whether an ARIA role is present. The W3C's WAI-ARIA specification enumerates the supported states and properties available to authors of rich internet applications, with detailed definitions for each. Note that the specific inventory of properties and their applicability can vary across WAI-ARIA versions; consult the current W3C specification for authoritative details.
Why it matters
ARIA properties are one of the primary mechanisms authors have for communicating the meaning and relationships of complex, interactive web components to assistive technologies. Native HTML elements often carry built-in semantics, but custom widgets built with generic elements like <div> and <span> may expose little or no meaningful information to a screen reader. Properly applied ARIA properties can help bridge that gap by exposing characteristics and relationships through the accessibility API, supporting the goals reflected in WCAG success criteria related to name, role, and value.
Because ARIA properties directly shape what an assistive technology user perceives, mistakes carry real consequences. Incorrect, missing, or contradictory ARIA can misrepresent a component's behavior or relationships, producing an experience that is more confusing than plain HTML would have been. The W3C guidance that inappropriate or excessive ARIA can be worse than none is widely echoed among practitioners, which is why ARIA is generally treated as a supplement to, not a replacement for, semantic HTML.
It is also important to distinguish conformance from usability and from legal compliance. Correctly using ARIA properties may support conformance with relevant WCAG criteria, but it does not by itself guarantee an accessible experience for all users, nor does it confer immunity from legal claims. Automated tools can detect only a portion of ARIA-related issues; manual review and testing with assistive technologies remain necessary. This entry is general information about a technical standard and is not legal advice; readers should consult the current W3C specification and, where relevant, qualified counsel.
Who it's relevant to
Inside ARIA
Common questions
Answers to the questions practitioners most commonly ask about ARIA.