Accessible Description
An accessible description is extra text associated with an interface element, such as a button, link, or image, that gives users of assistive technologies additional information beyond the element's short label. Where an accessible name identifies what an element is, an accessible description supplements that name with further context or instructions. Screen readers and other assistive technologies can present this description to help users understand or operate the element.
An accessible description is a supplementary text string exposed through the platform accessibility API and computed by the user agent from an element's markup. It complements the accessible name: the accessible name is a short label (often only 1 to 3 words) that identifies an element, while the accessible description provides additional, typically longer, context or instructions. In web content it is commonly derived from attributes such as aria-describedby (referencing other elements) or aria-description, and its computation follows the applicable name and description computation algorithm. Because descriptions are surfaced through assistive technologies, their presentation and timing can vary across screen readers and browsers, so implementations should be verified with manual and assistive technology testing rather than automated checks alone. This entry describes a technical concept and is not legal advice.
Why it matters
An accessible description gives users of assistive technologies context that a short label alone cannot convey. Where an accessible name identifies what an element is, often in just one to three words, the description supplements that name with further instructions or explanation, such as clarifying the format expected in a form field or the consequence of activating a control. For screen reader users who cannot rely on surrounding visual cues, this additional text can be the difference between confidently completing a task and abandoning it.
Because descriptions are surfaced through the platform accessibility API, their behavior depends on both the browser and the assistive technology in use. The same markup may be announced at different times, or with different verbosity, across screen readers. This variability means that supplying an accessible description in markup does not guarantee a consistent or usable experience for every user, and it reinforces why manual and assistive technology testing is necessary rather than relying on automated checks alone.
Accessible descriptions also interact with related concepts such as alternative text for images and other visual content. Providing meaningful supplementary information supports the broader goal of making interfaces understandable and operable, but no single implementation detail should be treated as a substitute for evaluating the full user experience. This entry describes a technical concept and is not legal advice.
Who it's relevant to
Inside Accessible Description
Common questions
Answers to the questions practitioners most commonly ask about Accessible Description.