CHAPTER 02
Beginner
Understanding Disabilities and User Needs
Updated: May 16, 2026
20 min read
# CHAPTER 2
Understanding Disabilities and User Needs
1. Introduction
If you design an application assuming every user has 20/20 vision, perfectly steady hands, a quiet environment, and a high-speed internet connection, you are designing for a fantasy. In the real world, users have glaucoma, color blindness, broken arms, ADHD, or are simply trying to read your website on a vibrating train with a cracked phone screen in bright sunlight. To design accessible products, you must first empathize with the diverse spectrum of human ability. In this chapter, we will master Understanding Disabilities and User Needs. We will break down the four primary categories of permanent disability—Visual, Hearing, Motor, and Cognitive—and explore the concept of "Situational" and "Temporary" impairments that prove accessibility benefits every single human being.2. Learning Objectives
By the end of this chapter, you will be able to:- Identify the four major categories of permanent digital disability.
- Understand the software constraints of Visually Impaired users (Screen Readers vs. Magnifiers).
- Recognize the UI requirements for Motor Disabilities (Keyboard navigation, Touch targets).
- Address the UX needs of Cognitive Disabilities (Readability, Distraction reduction).
- Define Temporary and Situational impairments.
3. Visual Impairments
Visual disabilities range from total blindness to mild color deficiency.-
Blindness: Users rely entirely on Screen Reader software (like VoiceOver or NVDA) which reads the website's HTML code aloud. If your code is not semantic (using proper
<header>and<button>tags), the screen reader will read pure gibberish, trapping the user.
- Low Vision: Users rely on screen magnifiers (zooming in 400%). If your website layout shatters or text overlaps when zoomed in, it is inaccessible.
- Color Blindness (Color Vision Deficiency): Users cannot distinguish between certain colors (usually red/green). If you use a red border to indicate an error without any supporting text or icons, the user will not see the error.
4. Hearing Impairments
Users who are deaf or hard of hearing face barriers primarily with multimedia content.- The UX Requirement: Any video or audio content MUST have synchronized closed captions or a full text transcript.
- The Secondary Trap: Do not rely on audio cues to communicate critical UI success. If your app makes a pleasant "Ding!" when a file uploads, but there is no visual change on the screen, a deaf user will not know the upload was successful.
5. Motor (Physical) Impairments
Motor disabilities include paralysis, cerebral palsy, Parkinson's disease, or severe arthritis. These users often cannot use a precise mouse.-
Keyboard Navigation: Many users rely entirely on a physical keyboard, pressing the
Tabkey to jump from button to button. Your UI must have highly visible "Focus States" (thick outlines) so they know where they are.
-
Touch Targets: For users with tremors attempting to use a touchscreen, a tiny
16x16px'X' icon to close a pop-up is an impossible target. You must provide massive, invisible bounding boxes (min44x44px) around interactive elements.
6. Cognitive and Neurological Disabilities
This is the broadest category, encompassing ADHD, Dyslexia, Autism, and memory impairments.- The UX Requirement: Clarity and consistency.
- Dyslexia: Massive walls of text are unreadable. You must break text into short paragraphs, use bullet points, and avoid highly stylized, decorative fonts.
- ADHD / Vestibular Disorders: Autoplaying videos, spinning animations, and pop-up ads cause severe cognitive overload and physical nausea. Users must have the ability to pause, stop, or hide moving content.
7. Temporary and Situational Impairments
Disability is not always permanent.- Permanent: A person born with one arm. (Requires one-handed UX).
- Temporary: A person with a broken arm in a cast. (Requires one-handed UX for 6 weeks).
- Situational: A new parent holding a baby in one arm and trying to order groceries on their phone with the other. (Requires one-handed UX right now).
8. Diagrams/Visual Suggestions
*Visual Concept: The Persona Spectrum* Provide a 3-column table illustrating the Permanent, Temporary, and Situational spectrum.- Row 1 (Touch): Permanent: One Arm. Temporary: Arm injury. Situational: Holding a baby.
- Row 2 (Sight): Permanent: Blind. Temporary: Cataract surgery. Situational: Distracted driver (glaring sunlight).
- Row 3 (Hearing): Permanent: Deaf. Temporary: Ear infection. Situational: Bartender in a loud nightclub.
9. Best Practices
- Plain Language: Cognitive accessibility requires designing for an 8th-grade reading level. Do not use complex corporate jargon or massive academic paragraphs. If you can explain a feature in 5 words instead of 20, do it. Clarity is the ultimate accessibility feature.
10. Common Mistakes
- The "Time Limit" Trap: A designer builds a secure checkout flow that automatically logs the user out after 60 seconds of inactivity. *The Failure:* A user with motor impairments, or a user using a sip-and-puff assistive device, might take 3 minutes just to type their credit card number. The system will kick them out before they can finish. *The Fix:* Always provide a highly visible UI prompt warning the user that time is expiring, and give them a button to "Extend Time."
11. Mini Project: Empathy Mapping
Let's analyze a common UI component through 4 different lenses.- 1. The Component: A "Submit Payment" form with a 3-minute countdown timer, tiny gray text, and a requirement to click 5 different small checkboxes.
- 2. Lens 1 (Visual): Low-contrast gray text is invisible to low-vision users. Fix: Increase contrast to pure black.
- 3. Lens 2 (Motor): 5 tiny checkboxes are impossible for a user with hand tremors. Fix: Increase checkbox target sizes to 44x44px.
- 4. Lens 3 (Cognitive): The 3-minute countdown induces severe anxiety for a user with ADHD. Fix: Remove the timer or allow the user to extend it.
- 5. *Result:* By viewing the design through the spectrum of disability, you have identified three catastrophic UX failures before writing any code.
12. Practice Exercises
- 1. Define the difference between a "Temporary Impairment" and a "Situational Impairment." Provide a real-world example of how a situational impairment affects a user's ability to hear a video.
- 2. Explain why relying entirely on a specific color (like Red) to communicate a system error is a failure of Visual Accessibility. What specific demographic does this exclude?
13. MCQs with Answers
Question 1
A UX designer creates a beautiful, minimalist website where all the text is light gray, and the buttons are extremely small to look "modern." Which two specific groups of disabled users will be completely locked out of this application?
Question 2
When designing a complex data-entry form, you must consider users with Cognitive disabilities (like ADHD) or severe Motor disabilities (who type very slowly using assistive technology). What common security feature causes severe accessibility failures for these users?
14. Interview Questions
- Q: Explain the "Persona Spectrum" (Permanent, Temporary, Situational). If you are pitching an accessible design feature to a skeptical CEO who says, "We don't have blind customers," how do you use the concept of Situational Impairment to prove the business value?
- Q: Walk me through the specific digital barriers faced by a user with Dyslexia. How do you adjust your Typography and Content Hierarchy to ensure the interface is cognitively accessible?
- Q: A developer has programmed a success notification that plays a pleasant "Ding" sound when a file finishes uploading, but there is no visual change on the screen. Which user demographic have they failed, and what is the required UX fix?
15. FAQs
Q: How do blind users know where images are on a website? A: They don't see the images. The screen reader software looks for a specific piece of HTML code calledalt text (Alternative Text). The developer writes a description of the image in the code (e.g., alt="A golden retriever catching a frisbee"). The screen reader reads that sentence out loud to the user. If the alt text is missing, the screen reader just says "Image," which is useless.