Disabilities that affect web use fall into four broad groups — visual, auditory, motor, and cognitive — and each one runs into specific barriers that WCAG 2.1 AA was written to remove. This guide maps every major disability type to the barriers it faces and the manual fix that clears the way.

Why grouping disabilities helps

Disability is not a single experience. The World Health Organization estimates over a billion people live with some form of disability, and on the web their needs cluster into patterns. By grouping those patterns, you can tie each one to the assistive technology people use and to the POUR principles — Perceivable, Operable, Understandable, Robust — that underpin every WCAG success criterion.

Keep two things in mind. First, many people have more than one disability, so fixes overlap. Second, accessibility also helps people with temporary disabilities (a sprained wrist, an eye infection) and situational ones (glare on a phone screen, a quiet office where audio can’t play). The W3C’s Web Accessibility Initiative (W3C/WAI) frames this well: design for the edges and the middle comes free.

Disability types, web barriers, and the WCAG fix

The table below is the core of this guide. Each row pairs a disability with a concrete barrier and the manual remediation that removes it. None of these are solved by a third-party widget — they live in your HTML, your CSS, and your content.

Disability typeCommon web barrierThe fix (and WCAG criterion)
BlindnessImages with no alt text; unlabeled buttons; the page can’t be read aloud in orderAdd meaningful alt text and ARIA labels; logical heading structure (WCAG 1.1.1, 4.1.2)
Low visionText too small or low contrast; breaks when zoomed to 200%4.5:1 contrast minimum; reflowable, resizable text (WCAG 1.4.3, 1.4.4, 1.4.10)
Color blindnessMeaning shown by color alone (“fields in red are required”)Add text, icons, or patterns alongside color (WCAG 1.4.1)
Deaf / hard of hearingVideo and audio with no captions or transcriptSynchronized captions and transcripts for media (WCAG 1.2.2, 1.2.4)
Limited dexterity / mobilityControls that need a mouse; tiny tap targets; no visible focusFull keyboard operability and large targets (WCAG 2.1.1, 2.4.7, 2.5.5)
Tremor / motor precisionTime limits; drag-only actions; clickable areas too smallGenerous targets, no strict timeouts, pointer alternatives (WCAG 2.2.1, 2.5.1)
Cognitive / learningDense jargon; confusing navigation; no error helpPlain language, consistent layout, clear error messages (WCAG 3.1.5, 3.2.3, 3.3.1)
Seizure disordersFlashing or strobing contentNothing flashes more than three times per second (WCAG 2.3.1)
Speech disabilitiesVoice-only verification with no alternativeOffer a non-speech input path (WCAG 1.4.1, plus inclusive forms)

Visual disabilities in depth

This group ranges from total blindness to low vision and color blindness, and it accounts for the barriers people picture first.

  • Blind users rely on a screen reader — NVDA, JAWS, or VoiceOver — that converts the page to speech or braille. They navigate by headings, landmarks, and links, so a missing <h1>, an unlabeled icon button, or a decorative image with no empty alt="" becomes a wall.
  • Low-vision users may use screen magnification or simply bump up the browser zoom. If your layout breaks at 200% or your gray-on-gray text falls below 4.5:1, the content is technically there but practically unreadable.
  • Color-blind users (about 1 in 12 men) miss information conveyed by color alone. A link that’s only distinguished by being blue, or a form that marks errors only in red, leaves them guessing.

Auditory disabilities in depth

Deaf and hard-of-hearing users need an alternative to sound. The barrier is almost always media: a product video, a webinar recording, or an audio testimonial with no captions and no transcript. Captions also help the much larger group of people watching with the sound off — a clear case where one fix serves many.

Motor disabilities in depth

Motor and mobility disabilities include paralysis, missing limbs, tremor, and repetitive strain. Many of these users never touch a mouse; they navigate entirely by keyboard, switch device, or voice. Barriers appear when:

  • A custom dropdown or modal can’t be reached or dismissed with the Tab and Escape keys.
  • There’s no visible focus indicator, so the user can’t tell where they are.
  • An action requires a precise drag, or a session times out before they finish.

Cognitive disabilities in depth

This is the largest and most overlooked group — it covers dyslexia, ADHD, memory impairment, and autism, among others. The barriers are subtle: walls of jargon, inconsistent navigation that moves between pages, forms that reject input without explaining why, and auto-playing content that breaks concentration. The fixes are plain language, predictable structure, and helpful error recovery — quality writing and design as much as code.

Under ADA Title III, courts have repeatedly treated business websites as “places of public accommodation,” and the Department of Justice (ADA.gov) has affirmed that the ADA applies to web content. Federal agencies and their vendors are also bound by Section 508, which now references WCAG 2.0 AA directly.

The practical result: thousands of ADA web-accessibility lawsuits and demand letters are filed each year, and the barriers above are exactly what plaintiffs’ testers look for. A missing form label or an inaccessible checkout isn’t just an inconvenience — it’s the evidence cited in the complaint. (This is general information, not legal advice; talk to an attorney about your situation.)

Why overlays don’t remove these barriers

It’s tempting to drop in an accessibility widget and call it done. But overlays sit on top of your code without changing it. They can’t write meaningful alt text for a specific image, they can’t add captions to your video, and they can’t restructure a keyboard trap. Independent testing — and the response from screen-reader users — shows overlays often introduce new barriers while leaving the originals in place. There’s a reason the choice comes down to overlay vs. manual remediation, and why we land firmly on manual.

Every barrier in the table lives in the source: the HTML, the ARIA, the copy, the media. Removing it means editing that source. That’s remediation — done by hand, verified with the same assistive technology your visitors use, and documented so you can prove the work.

Removing the barriers on your site

You can’t fix what you haven’t found. A useful path:

  1. Scan for the automatable issues — start with a free accessibility scan.
  2. Test manually with NVDA, VoiceOver, and keyboard-only navigation, because automated tools catch only about a third of WCAG failures — see automated vs. manual testing.
  3. Remediate each barrier in the code and content.
  4. Re-test and document so the fixes hold over time.

Curbcut handles all four steps. If you’d rather see the full inventory of barriers on your site before deciding, start with a free scan — then we’ll show you exactly what it takes to remove them, by hand, for real.