1. What Is WCAG (Quick Primer)
The Web Content Accessibility Guidelines (WCAG) are the global standard for web accessibility. Published by the World Wide Web Consortium (W3C), WCAG defines technical criteria — called success criteria — that make web content usable by people with visual, auditory, motor, and cognitive disabilities.
Every version of WCAG is organized around four principles, known by the acronym POUR:
Perceivable
Content must be presentable in ways users can perceive (alt text, captions, sufficient contrast).
Operable
Users must be able to navigate and interact using keyboard, touch, voice, or assistive tech.
Understandable
Content and UI behavior must be predictable, readable, and help users avoid errors.
Robust
Content must work reliably across browsers, assistive technologies, and future user agents.
Each success criterion falls into one of three conformance levels:
Level A
Minimum accessibility. Failure means some users cannot access content at all.
Level AA
The legal and industry standard. Nearly every law and procurement policy references Level AA.
Level AAA
Enhanced accessibility. Aspirational for most sites — excellent for specialized audiences.
For a deeper dive into every WCAG criterion, see our complete WCAG reference.
2. WCAG Version Timeline: 2.0 → 2.1 → 2.2
WCAG has evolved significantly over 15 years. Each version builds on the last — they're additive, not replacement standards.
WCAG 2.0
The foundational version. Introduced the POUR principles, 61 success criteria (25 A, 13 AA, 23 AAA), and the three conformance levels. Became an ISO standard (ISO/IEC 40500:2012). Still referenced by Section 508's "original" standard and many older policies.
Key focus: Core accessibility — alt text, keyboard access, captions, contrast, form labels.
WCAG 2.1
Added 17 new success criteria (5 A, 7 AA, 5 AAA) on top of everything in 2.0, bringing the total to 78. Addressed gaps for mobile users, people with low vision, and people with cognitive/learning disabilities.
Key additions: Orientation, reflow (responsive design), text spacing, motion actuation, target size (enhanced), status messages.
WCAG 2.2
Published October 5, 2023. Added 9 new success criteria (2 A, 4 AA, 3 AAA) and removed 1 (4.1.1 Parsing), for a total of 86 criteria. Strongest emphasis yet on cognitive accessibility, mobile usability, and reducing user burden.
Key additions: Focus appearance, dragging alternatives, target size (minimum), consistent help, redundant entry, accessible authentication.
Coming next: WCAG 3.0 (formerly called "Silver") is under development but won't be finalized for several years. WCAG 2.2 is the standard to plan around through at least 2028.
3. Side-by-Side Comparison: WCAG 2.0 vs 2.1 vs 2.2
Here's how the three active WCAG versions stack up across every dimension that matters for compliance planning:
| Feature | WCAG 2.0 | WCAG 2.1 | WCAG 2.2 |
|---|---|---|---|
| Release Date | Dec 2008 | Jun 2018 | Oct 2023 |
| Total Success Criteria | 61 | 78 | 86 |
| Level A Criteria | 25 | 30 | 32 |
| Level AA Criteria | 13 | 20 | 24 |
| Level AAA Criteria | 23 | 28 | 30 |
| Mobile Focus | ❌ Minimal | ✅ Strong | ✅ Stronger |
| Cognitive Accessibility | ❌ Minimal | ⚠️ Partial | ✅ Strong |
| Authentication Rules | ❌ None | ❌ None | ✅ New |
| Drag-and-Drop Rules | ❌ None | ❌ None | ✅ New |
| Focus Visibility Rules | Basic (2.4.7) | Basic (2.4.7) | Enhanced (2.4.11–13) |
| W3C Recommendation | Superseded | Superseded | ✅ Current |
| Legal Standard (US/EU) | Legacy only | ✅ Current legal ref | Best practice |
Key takeaway: WCAG 2.2 is the current W3C recommendation. WCAG 2.1 is the current legal reference. They're not the same thing — and understanding the gap matters for your compliance strategy.
4. Every New Success Criterion in WCAG 2.2
WCAG 2.2 introduces 9 new success criteria. Six are at Level A or AA (meaning they affect most compliance targets), and three are at Level AAA. Here's each one explained with practical context:
Level AA
2.4.11 Focus Not Obscured (Minimum)
When a UI component receives keyboard focus, it must not be entirely hidden by author-created content — sticky headers, cookie consent banners, chat widgets, or floating action buttons.
Real-world problem: A keyboard user tabs to a link, but the sticky navigation bar covers it completely. They can't see what they've focused on.
Fix: Add scroll-padding-top that accounts for fixed header height. Dismiss or reposition overlays when they would obscure focused elements.
Level AAA
2.4.12 Focus Not Obscured (Enhanced)
The stricter version: no part of the focused component may be hidden by author-created content. While the minimum (AA) allows partial obscuring, the enhanced version demands the entire focus indicator is visible.
Level AAA
2.4.13 Focus Appearance
Focus indicators must have a minimum area (at least as large as a 2 CSS pixel border around the component) and a 3:1 contrast ratio between focused and unfocused states. This gives the existing 2.4.7 "Focus Visible" criterion real teeth.
Note: This is Level AAA, so it isn't required for standard compliance. But if you're designing custom focus styles, follow these specs anyway — they ensure your focus indicators actually work for low-vision users.
Level AA
2.5.7 Dragging Movements
Any functionality that uses a dragging movement (drag-and-drop file uploads, sortable lists, map panning, range sliders) must offer a single-pointer alternative that doesn't require dragging.
Who this helps: Users with motor impairments, tremors, or who use head pointers, eye-tracking, or speech-controlled cursors. Dragging requires sustained, precise movement that many users cannot perform.
Fix: Add click-based alternatives. Range sliders → add +/− buttons or a text input. Sortable lists → add "Move up/down" buttons. File upload → keep the drag zone but also provide a file picker button.
Level AA
2.5.8 Target Size (Minimum)
Interactive targets must be at least 24×24 CSS pixels, or have sufficient spacing from adjacent targets. Exceptions exist for inline links within sentences, browser-default controls, and cases where the specific presentation is legally or functionally essential.
Context: WCAG 2.1 already had 2.5.5 Target Size (Enhanced) at Level AAA requiring 44×44px. WCAG 2.2's new 2.5.8 brings a more practical 24×24px minimum to Level AA — making it a compliance requirement.
Fix: Increase padding on buttons and links. Use min-height: 44px; min-width: 44px; as a best practice even though 24px is the minimum.
Level A
3.2.6 Consistent Help
If help mechanisms (contact info, live chat, FAQ links, self-help options) are repeated on multiple pages, they must appear in the same relative order on every page. This doesn't mandate that you have help — just that if you do, it's consistent.
Who this helps: Users with cognitive disabilities who rely on consistent page structure to find help. If your "Contact Us" link moves from the header on one page to the footer on another, it becomes a barrier.
Fix: Use a global component (shared header/footer) for all help mechanisms. Most modern frameworks already do this naturally.
Level A
3.3.7 Redundant Entry
Information the user has already entered in the same process must be auto-populated or available for selection — unless re-entry is essential (e.g., "confirm your password") or the data has changed.
Common violation: Multi-step checkout flows that ask for the shipping address, then require typing the billing address from scratch even when they're the same.
Fix: Offer "same as shipping" checkboxes. Use HTML autocomplete attributes. Persist form data across steps.
Level AA
3.3.8 Accessible Authentication (Minimum)
Authentication must not rely on cognitive function tests — memorizing passwords, transcribing codes, solving puzzles, performing calculations — unless a mechanism exists to assist (password managers, copy-paste, biometrics) or a non-cognitive alternative is available.
What this means in practice: If your login form blocks password managers (e.g., disabling paste on the password field) or uses CAPTCHAs without alternatives, you're violating this criterion.
Fix: Never disable paste on password fields. Use invisible CAPTCHAs (reCAPTCHA v3) or offer audio/email verification alternatives. Support OAuth/SSO and passkeys.
Level AAA
3.3.9 Accessible Authentication (Enhanced)
The stricter version: no cognitive function test at all for authentication, with only object recognition (e.g., "select all images with traffic lights") and personal content (e.g., "which photo is yours?") as allowed exceptions. No reliance on transcription, memorization, or calculation.
5. What Was Removed: 4.1.1 Parsing
WCAG 2.2 removed criterion 4.1.1 Parsing, which required proper HTML nesting, unique IDs, and valid markup. Why? Modern browsers and assistive technologies have their own robust HTML parsers that handle malformed markup gracefully. The criterion was written for an era of inconsistent browser parsing that no longer exists.
What this means for you: Clean HTML is still best practice for SEO, performance, and maintainability. But you won't fail a WCAG 2.2 audit for a duplicate ID or an unclosed tag. The practical accessibility issues that 4.1.1 was meant to catch (like duplicate IDs on form fields breaking label associations) are covered by other criteria.
6. Which WCAG Standard Is Legally Required?
This is where it gets nuanced. Different laws reference different WCAG versions, and "legally required" varies by jurisdiction and sector. Here's the current landscape as of 2026:
🇺🇸 United States — ADA Title II (Government)
The DOJ's April 2024 rule explicitly requires WCAG 2.1 Level AA for state and local government websites. Deadlines: April 24, 2026 for large agencies (50,000+ population), April 26, 2027 for smaller agencies. This is the first time ADA regulations have named a specific WCAG version.
For more details, see our ADA Website Compliance Guide.
🇺🇸 United States — ADA Title III (Private Sector)
No regulation specifies a WCAG version for private-sector websites yet. However, courts and settlement agreements consistently reference WCAG 2.1 Level AA as the benchmark. DOJ statements and amicus briefs also point to 2.1 AA as the expected standard for "places of public accommodation."
🇺🇸 United States — Section 508 (Federal)
Section 508 was refreshed in 2018 to incorporate WCAG 2.0 Level A and AA by reference. The Access Board has signaled potential updates to reference WCAG 2.1 or 2.2, but no rule change has been published yet. Federal agencies should plan for WCAG 2.1 AA minimum.
🇪🇺 European Union — European Accessibility Act (EAA)
The EAA took effect June 28, 2025, requiring accessibility for products and services sold in the EU. The harmonized standard EN 301 549 references WCAG 2.1 Level AA. EN 301 549 is expected to update to reference WCAG 2.2, but the timeline is unclear. Companies serving EU customers should target WCAG 2.1 AA as the legal floor.
🇬🇧 United Kingdom
The Public Sector Bodies (Websites and Mobile Applications) Accessibility Regulations 2018 require WCAG 2.1 Level AA for public-sector sites. The Equality Act 2010 applies broadly to private-sector sites, with WCAG 2.1 AA as the de facto standard.
🇨🇦 Canada — Accessible Canada Act
Federal organizations must meet WCAG 2.1 Level AA. Provincial standards vary: Ontario's AODA references WCAG 2.0 Level AA but is expected to update.
⚡ The Bottom Line
WCAG 2.1 Level AA is the legal standard across the US, EU, UK, and Canada in 2026. No law currently mandates WCAG 2.2. But WCAG 2.2 is the W3C recommendation — meaning it's the version the standards body considers current and complete. Laws will catch up; the question is when, not if.
7. When to Target WCAG 2.2 vs 2.1
The right target depends on your situation. Here's a decision framework:
✅ Target WCAG 2.2 Level AA When:
- →You're building something new — new site, redesign, or new product. Building 2.2-compliant from the start costs almost nothing extra vs retrofitting later.
- →You already meet WCAG 2.1 AA — the gap between 2.1 and 2.2 is only 6 criteria at A/AA level. Most are straightforward to implement.
- →You serve international markets — especially the EU, where EN 301 549 will likely update to reference 2.2 in the near future.
- →You're in a high-litigation industry — e-commerce, finance, healthcare, education. Targeting 2.2 demonstrates good faith and reduces legal exposure.
- →You have mobile-heavy traffic — WCAG 2.2's target size and dragging requirements directly improve mobile UX for all users.
- →Your procurement or RFPs require "current WCAG" — increasingly, enterprise buyers specify the latest W3C recommendation.
🎯 Target WCAG 2.1 Level AA When:
- →You're still working toward basic compliance — if you haven't met 2.1 AA yet, don't skip ahead. Get the foundation right first.
- →You need to satisfy a specific legal requirement — ADA Title II, the EAA, or a settlement agreement that names WCAG 2.1 AA explicitly.
- →Budget and timeline are tight — meet 2.1 AA first as your legal safe harbor, then plan a 2.2 upgrade in the next development cycle.
Our recommendation: Target WCAG 2.2 Level AA. Since WCAG 2.2 is a superset of 2.1, meeting 2.2 automatically satisfies every law that references 2.1. You get legal compliance and future-proofing in one effort.
8. Practical Implementation Guide: Upgrading to WCAG 2.2
If you're already WCAG 2.1 Level AA compliant (or close), here's a prioritized action plan for the 6 new A/AA criteria in WCAG 2.2. We've ordered them by typical effort — easiest first:
Consistent Help (3.2.6) — Level A
Quick winIf you use a shared layout component (header, footer, sidebar) for help mechanisms, you likely pass already. Verify that help links, chat widgets, and contact info appear in the same position across all pages.
Effort: 1-2 hours audit + fix. Most modern sites pass naturally.
Redundant Entry (3.3.7) — Level A
Quick winAudit multi-step forms: checkout flows, registration wizards, application forms. Wherever the user enters data in step 1 that's needed again in step 3, auto-populate it or offer a selection.
<!-- Good: HTML autocomplete attributes --> <input type="text" name="shipping-city" autocomplete="shipping locality" /> <!-- Good: "Same as shipping" checkbox --> <label> <input type="checkbox" id="same-address" /> Billing address same as shipping </label>
Effort: 2-8 hours depending on form complexity.
Accessible Authentication (3.3.8) — Level AA
Check your login, signup, and password reset flows:
- •Password managers work (no
autocomplete="off"on password fields, no paste blocking) - •CAPTCHAs have alternatives (invisible reCAPTCHA, audio challenges, email verification)
- •You don't require transcribing a code from one device to another without copy-paste support
Effort: 2-4 hours if you just need to remove paste-blocking. More if you need to replace CAPTCHAs.
Focus Not Obscured (2.4.11) — Level AA
Tab through every page and check if focused elements get hidden behind sticky headers, footers, cookie banners, or chat widgets. The fix:
/* Account for sticky header when scrolling to focused elements */
html {
scroll-padding-top: 80px; /* Match your header height */
scroll-padding-bottom: 60px; /* Match any sticky footer */
}
/* Ensure cookie banners don't block focus */
.cookie-banner {
/* Position at bottom but don't cover content */
position: fixed;
bottom: 0;
z-index: 1000;
}
/* When cookie banner is visible, add body padding */
body.has-cookie-banner {
padding-bottom: 80px;
}Effort: 2-6 hours. Mostly CSS adjustments and testing.
Target Size Minimum (2.5.8) — Level AA
Audit all interactive elements for 24×24px minimum size. Pay special attention to icon buttons, close buttons, pagination links, and mobile navigation toggles. Best practice is 44×44px per Apple/Google HIG, even though 24px is the WCAG minimum.
/* Global baseline for interactive elements */
button, a, [role="button"], input, select, textarea {
min-height: 44px;
min-width: 44px;
}
/* For inline links in text, use padding instead */
p a, li a {
min-height: auto;
min-width: auto;
padding: 2px 0; /* Exempt from target size per WCAG 2.2 */
}Effort: 4-16 hours depending on how many small interactive elements exist.
Dragging Movements (2.5.7) — Level AA
Inventory every dragging interaction on your site — sliders, sortable lists, kanban boards, map widgets, drag-and-drop uploads — and ensure each has a non-dragging alternative.
- •Range sliders: Add a text input or +/− stepper buttons
- •Sortable lists: Add "Move up / Move down / Move to position" controls
- •File upload: Keep drag zone, ensure the file picker button always works
- •Map widgets: Add keyboard pan controls or address search
Effort: Highly variable — 0 hours if you have no drag interactions, 20+ hours for complex apps with kanban boards or custom editors.
9. How RatedWithAI Tests Against Both Standards
RatedWithAI's scanner tests your site against both WCAG 2.1 and 2.2 in a single scan, giving you a clear picture of where you stand against each version.
Automated Rule Engine
Our scanner runs axe-core and custom rules covering all automatable WCAG 2.1 and 2.2 success criteria. Each finding is tagged with the specific WCAG version and level it applies to — so you can filter by "WCAG 2.2 AA only" to see exactly what's new.
AI-Powered Analysis
Beyond automated checks, our AI layer evaluates patterns that rules can't catch — like whether help mechanisms are consistently placed across pages (3.2.6) or whether your authentication flow relies on cognitive tests (3.3.8).
Version-Specific Reporting
Reports clearly separate WCAG 2.1 findings from the additional WCAG 2.2 criteria. You can track your compliance score against each version independently, making it easy to demonstrate 2.1 AA compliance for legal requirements while working toward 2.2.
Continuous Monitoring
Accessibility isn't a one-time project. Paid plans run scheduled scans across your entire site and alert you when new pages or deployments introduce WCAG violations — whether from 2.1 or 2.2 criteria.
10. Frequently Asked Questions
What is the difference between WCAG 2.1 and WCAG 2.2?
WCAG 2.2 adds 9 new success criteria on top of WCAG 2.1 and removes one (4.1.1 Parsing). The new criteria focus on mobile usability, cognitive accessibility, and better keyboard support — including focus visibility, dragging alternatives, target size minimums, consistent help, redundant entry prevention, and accessible authentication.
Which WCAG standard is legally required in 2026?
Most laws reference WCAG 2.1 Level AA. The DOJ's ADA Title II rule and the European Accessibility Act both use WCAG 2.1 AA as their benchmark. No law currently mandates WCAG 2.2, but it is the W3C's current recommendation and the direction standards are heading.
Is WCAG 2.2 backward-compatible with 2.1?
Yes. WCAG 2.2 includes all WCAG 2.1 criteria plus 9 new ones. A site conforming to WCAG 2.2 Level AA automatically conforms to WCAG 2.1 Level AA. The only change is that 4.1.1 Parsing was removed (it's obsolete with modern HTML5 parsing).
Should I follow WCAG 2.1 or 2.2?
If you're starting fresh or redesigning, target WCAG 2.2 Level AA. If you're already 2.1 compliant, upgrading to 2.2 is incremental — only 6 new criteria at A/AA. Since 2.2 is a superset of 2.1, meeting 2.2 satisfies both standards simultaneously.
How long does it take to upgrade from WCAG 2.1 to 2.2?
For a typical content website that already meets WCAG 2.1 AA, the upgrade takes 1-3 weeks of focused effort. The main tasks are: auditing touch target sizes, adding alternatives to any drag interactions, checking focus visibility with sticky elements, and reviewing authentication flows. Complex web applications with custom editors or kanban-style interfaces may need more time.
What about WCAG 3.0?
WCAG 3.0 is under development but won't be finalized for several years (earliest estimates: 2028-2030). It will be a significantly different approach — new scoring system, new conformance model — but is not yet stable enough to plan around. WCAG 2.2 is the standard to target through at least 2028.
WCAG 2.1 + 2.2 Compliance Check
See Where You Stand — Against Both Standards
Get a detailed accessibility report showing your WCAG 2.1 and 2.2 compliance — free, no signup required.