Reading Order
Reading order is the sequence in which content is presented to users who access it non-visually or sequentially, such as when a screen reader announces text or when a person navigates through a page one item at a time. When this order follows a logical flow, users can understand content the way it was intended; when it does not, the experience can become confusing or disorienting. A logical reading order helps ensure that the meaning conveyed by visual layout is also available to people using assistive technology.
Reading order refers to the order in which content is accessed programmatically, for example when read aloud by a screen reader or reached through sequential keyboard navigation. Screen readers generally announce content in a linear sequence that is derived from the underlying DOM order rather than from the visual arrangement produced by CSS or other layout techniques. When the DOM order diverges from the intended visual or logical order, the announced sequence may not match user expectations, so practitioners commonly verify that source order aligns with a meaningful reading sequence. Note that a logical reading order is one component of accessible content and does not by itself guarantee conformance to any specific standard; this entry is informational and not legal advice.
Why it matters
Reading order determines whether the meaning conveyed by a page's visual layout is also available to people who access content non-visually or sequentially. Sighted users can scan a page and intuit relationships between headings, columns, and callouts from their spatial arrangement. A person using a screen reader or navigating by keyboard, however, encounters content one item at a time in a linear sequence. When that sequence is logical, the content can be understood as intended; when it diverges from the intended flow, the experience can become confusing or disorienting.
The issue commonly arises because screen readers generally derive their announcement order from the underlying DOM rather than from the visual arrangement produced by CSS or other layout techniques. This means a page that looks correct on screen can still be announced in an illogical order if the source order does not match the intended reading sequence. Content repositioned visually with layout tools may be reached in an unexpected order by assistive technology, so verifying that source order aligns with a meaningful sequence is a routine part of accessible development.
A logical reading order is one component of accessible content, but it does not by itself guarantee conformance to any specific standard, and automated checks detect only a portion of related issues. Confirming that reading order matches user expectations generally requires manual review and testing with assistive technology. This entry is informational and not legal advice; requirements evolve through regulation and case law, and organizations with specific compliance questions should consult qualified counsel.
Who it's relevant to
Inside Reading Order
Common questions
Answers to the questions practitioners most commonly ask about Reading Order.