Focus Order
Focus order is the sequence in which interactive elements, such as links, buttons, and form fields, receive keyboard focus as a user moves through a page. When this order is logical and predictable, people navigating without a mouse can understand and operate the content in a way that preserves its meaning. A confusing or jumbled focus order can make a page difficult or impossible to use for keyboard and assistive technology users.
Focus order refers to the sequence in which focusable components (e.g., links, form inputs, buttons, and other interactive controls) receive focus during sequential keyboard navigation. Under WCAG 2.1 Success Criterion 2.4.3 (Focus Order, Level A), if a page can be navigated sequentially and the navigation sequence affects meaning or operation, focusable components must receive focus in an order that preserves that meaning and operability. In practice, focus order should generally follow a logical and intuitive progression, often aligned with the visual reading order, so that keyboard and assistive technology users encounter content coherently. Note that DOM order, source order, and any use of the tabindex attribute can affect focus order, and that manual keyboard and assistive technology testing is typically required to verify conformance, as automated checks alone may not detect illogical sequencing.
Why it matters
Focus order directly determines whether people who navigate without a mouse can understand and operate a page. Keyboard users, screen reader users, and others relying on assistive technology move through interactive elements sequentially, and if that sequence does not preserve the page's meaning or operation, the experience can become confusing or unusable. For example, a form whose fields receive focus out of order, or a modal dialog that sends focus somewhere unexpected, can trap or disorient users and prevent them from completing essential tasks.
Under WCAG 2.1, Success Criterion 2.4.3 (Focus Order) is a Level A requirement, the most fundamental conformance level, which reflects how basic and essential logical focus order is to accessible navigation. When a page can be navigated sequentially and that sequence affects meaning or operation, focusable components must receive focus in an order that preserves meaning and operability. A logical order, often aligned with the visual reading order, helps users build an accurate mental model of the content and interact with it coherently.
Because illogical focus order may not be detected by automated checks alone, teams that rely solely on automated tooling can ship pages that technically render but frustrate keyboard and assistive technology users in practice. Verifying focus order generally requires manual keyboard testing and testing with assistive technology. Meeting this success criterion supports usability but does not by itself guarantee an accessible experience across all disabilities or immunity from legal claims; this guidance is not legal advice, and requirements evolve through regulation and case law.
Who it's relevant to
Inside Focus Order
Common questions
Answers to the questions practitioners most commonly ask about Focus Order.