Concepts

Cognitive accessibility

Also: cognitive a11y, neurodiverse accessibility

Accessibility for users with cognitive, learning, and neurological disabilities — working-memory limitations, attention disorders, dyslexia, dyscalculia, autism, intellectual disability, brain injury, and dementia. The under-served dimension of WCAG.

Cognitive accessibility is the broad practice of designing digital products to be usable by people with cognitive, learning, and neurological disabilities — a population that includes users with working-memory limitations, attention disorders (ADHD), dyslexia, dyscalculia, autism, intellectual disability, brain injury, dementia, and many others.

It is the most under-served dimension of accessibility relative to its user-base size. The W3C’s WAI publishes the work of the Cognitive Accessibility Task Force (COGA), but cognitive considerations are under-represented in WCAG 2.x. WCAG 3 is expected to substantially expand this coverage.

Why it’s hard

The disability categories cognitive accessibility serves are extremely heterogeneous. Design choices that help one cognitive disability can actively hurt another:

  • Auto-advancing carousels are bad for ADHD (distraction) but the scrolling itself can be a cognitive cue for users with dyslexia who prefer sequential exposure.
  • Long detailed help text helps users with working-memory limitations; the same length is overwhelming for users with severe intellectual disability.
  • Symbols paired with text help intellectual-disability users enormously; the same symbols can be distracting noise for neurotypical users in a hurry.

The state of the art is personalisation: let the user pick the adaptation level that suits them, ideally via system-wide preferences the site honours rather than per-site toggles.

What it actually looks like in practice

Cognitive-accessibility-aware design tends to include:

  • Plain language. Sentences under 25 words; common vocabulary; active voice; one idea per paragraph. Plain English ratings (Hemingway, ReadabilityFormulas) target reading age ~12.
  • Consistent navigation. The same menu in the same place across pages. The same labels for the same actions.
  • Predictable interaction. Forms behave the same way across pages. No surprise behaviour (auto-submit on tab-out, auto-redirect on selection).
  • Error recovery. Clear error messages; ability to undo destructive actions; auto-save with explicit indicators.
  • Reduced motion — see the dedicated entry.
  • Sufficient time. Long-enough time-outs; warnings before expiration; ability to extend.
  • Symbol support and read-aloud. For users with significant intellectual disability or low literacy, symbol-supported labels and read-aloud functionality are core access mechanisms.

WCAG criteria that directly serve cognitive accessibility

While WCAG 2.x’s coverage is criticised as thin, several criteria are operatively important:

  • 3.1.5 Reading Level (AAA) — content readable by lower secondary reading levels, or supplemental simpler version available.
  • 3.2.3 Consistent Navigation (AA), 3.2.4 Consistent Identification (AA) — predictable structure.
  • 3.3.5 Help (AAA) — context-sensitive help on every form.
  • 2.2.1 Timing Adjustable (A) — adjustable time limits.
  • 2.3.3 Animation from Interactions (AAA) — disable-able motion.
  • 3.3.7 Redundant Entry (A, new in 2.2) — don’t ask for the same info twice in a flow.

Where to go deeper

The COGA Task Force publishes practical guidance — “Making Content Usable for People with Cognitive and Learning Disabilities” — that goes well beyond WCAG 2.x in actionable recommendations. It’s the single most useful starting point for teams wanting to do this work seriously.