Skip to content

Find what you need, instantly

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

All roles

feed

Document structure role

A scrollable list of articles that loads more content as the user scrolls, like an infinite social feed. It defines a keyboard and focus model so screen-reader users can move article by article and know when content is loading. Set aria-busy while new articles are being added.

Used on
A scrollable list of articles that loads more on scroll.
Accessible name
Recommended, via aria-labelledby or aria-label.
Example
role="feed"
<div role="feed" aria-label="Posts">
  <article aria-posinset="1" aria-setsize="-1">…</article>
</div>