Image Alt Text Accessibility Audit Guide
Guide to auditing image alternative text for WCAG 2.1 criterion 1.1.1. Covers informative images, decorative images, complex images, image links, and CAPTCHAs.
Detailed Explanation
Image Alt Text Audit
WCAG criterion 1.1.1 (Non-text Content) is one of the most commonly tested and most frequently failed success criteria. Every non-text element must have a text alternative that serves an equivalent purpose.
Types of Images and Correct Alt Text
Informative images convey information:
- Alt text should describe the image content concisely
- Example:
alt="Bar chart showing sales growth from $1M in 2022 to $3M in 2024"
Decorative images add visual interest but no information:
- Use empty alt:
alt="" - Or use CSS background-image instead
- Never use
alt="decorative"oralt="image"
Functional images (inside links or buttons):
- Alt text describes the function, not the image
- Example: Search icon inside a button:
alt="Search"
Complex images (charts, diagrams, infographics):
- Brief alt text plus a longer description
- Use
aria-describedbypointing to a detailed text description - Or provide a link to a text alternative
Image links:
- Alt text describes the link destination
- Example: Logo linking to homepage:
alt="Company Name - Home"
Audit Process
For every <img>, <svg>, <canvas>, and CSS background image:
- Is the image decorative? If yes, verify
alt=""orrole="presentation" - Is the image informative? If yes, verify alt text describes the information
- Is the image functional? If yes, verify alt text describes the function
- Is the image complex? If yes, verify a longer description is available
- Is alt text too long? Keep under 125 characters when possible
- Does alt text start with "image of" or "picture of"? Remove these — screen readers already announce it as an image
Common Failures
- Missing alt attribute entirely (screen readers read the filename)
- Alt text that says "image" or "photo" without description
- Decorative images with non-empty alt text (creates noise for screen reader users)
- Complex charts with only "chart" as alt text
- CMS-generated alt text using the filename
Use Case
Alt text auditing should be part of every content review process. Content editors, designers, and developers all share responsibility for correct alt text. Organizations with large image libraries should establish alt text guidelines and review them during content publishing workflows.
Try It — Accessibility Audit Checklist
Perceivable
Operable
Understandable
Robust
50 criteria shown · Click the status badge to cycle through Pass / Fail / N/A / Untested
Perceivable
Operable
Understandable
Robust
Related Topics
WCAG Level A Accessibility Checklist
Level Checklists
Form Accessibility Checklist and Audit Guide
Category Audits
ARIA Roles and Properties Accessibility Audit
Component Audits
Screen Reader Testing Guide for Accessibility Audits
Component Audits
WCAG Color Contrast Accessibility Audit Guide
Category Audits