Skip to content

Find what you need, instantly

Search components, ARIA roles & attributes, and WCAG criteria.

All attributes

aria-flowto

ID reference list

Overrides the default reading order by pointing assistive technologies to the element(s) that should be read next. It defines an alternate path through content when the DOM order doesn't match the intended sequence. Support is limited and it can disorient users, so prefer fixing the DOM order where you can.

Value
A space-separated list of element ids.
Used on
Any HTML element — aria-flowto is a global property.
Associated roles
Every ARIA role. As a global property, aria-flowto is supported on all roles.
Example
aria-flowto="…"
<div id="step1" aria-flowto="step3">…</div>