Guide · 12 min read

WCAG 2.2 Website Accessibility UK — The 2026 Compliance Playbook

WCAG 2.2 became the published W3C recommendation in October 2023 and is now the working UK baseline for any website serious about accessibility. The full UK 2026 playbook covering the nine new success criteria, the existing 2.1 baseline, EAA implications and the audit process.

TL;DR

WCAG 2.2 AA is the working accessibility standard for UK websites in 2026. The nine new success criteria added since 2.1 cover focus appearance, focus order, dragging movements, target size, accessible authentication, redundant entry, consistent help, and accessibility statements. The European Accessibility Act enforcement from June 2025 has lifted the commercial stakes; UK sites trading into the EU are now in scope.

Website accessibility used to be treated by most UK SMBs as a nice-to-have. Two things have changed that. The W3C published WCAG 2.2 as a recommendation in October 2023, making it the working standard for any organisation taking accessibility seriously. The European Accessibility Act came into force across member states on 28 June 2025, applying to any business above the small-business threshold trading into the EU. UK businesses with EU customers are in scope; UK public-sector sites have been in scope since 2018 under the Public Sector Bodies Accessibility Regulations. The combined effect: accessibility is now a baseline expectation across most of the commercial UK web.

What WCAG 2.2 actually is

WCAG 2.2 is the W3C’s Web Content Accessibility Guidelines version 2.2, published as a Recommendation on 5 October 2023. It is an additive update to WCAG 2.1 — every 2.1 success criterion is still in 2.2, with nine new criteria added and one removed (4.1.1 Parsing, which is now considered obsolete). For UK organisations meeting WCAG 2.1 AA today, achieving WCAG 2.2 AA requires implementing the nine new criteria; the existing 2.1 work transfers cleanly.

The nine new WCAG 2.2 success criteria

(1) 2.4.11 Focus Not Obscured (Minimum) AA — when an element receives focus, it must not be entirely hidden by author-created content (sticky headers, cookie banners, modals). (2) 2.4.12 Focus Not Obscured (Enhanced) AAA — the stricter version, no part hidden. (3) 2.4.13 Focus Appearance AAA — focus indicators must meet specific size and contrast thresholds. (4) 2.5.7 Dragging Movements AA — any drag interaction must have a single-pointer alternative. (5) 2.5.8 Target Size (Minimum) AA — interactive targets at least 24×24 CSS pixels unless inline or otherwise exempted. (6) 3.2.6 Consistent Help A — help mechanisms (contact, FAQ, chat) appear in consistent order across the site. (7) 3.3.7 Redundant Entry A — information previously entered in a process is auto-populated or available for selection. (8) 3.3.8 Accessible Authentication (Minimum) AA — no cognitive function test (memorising password, solving puzzle) required for authentication unless there is an alternative. (9) 3.3.9 Accessible Authentication (Enhanced) AAA — the stricter version applies to any cognitive test.

The 2.1 baseline that still applies

The five most-failed WCAG 2.1 AA criteria in UK SMB audits, all of which still apply in 2.2. (1) 1.4.3 Contrast Minimum — text must meet 4.5:1 contrast against background for normal text, 3:1 for large text. The most common failure: pale grey body text on white. (2) 1.4.11 Non-text Contrast — UI components and graphical objects must meet 3:1 contrast. The most common failure: low-contrast form field borders. (3) 2.4.7 Focus Visible — every interactive element must have a visible focus indicator. The most common failure: CSS resets that remove outlines without replacing them. (4) 1.3.1 Info and Relationships — semantic structure must be programmatically determinable. The most common failure: headings used for visual styling rather than document structure. (5) 4.1.2 Name, Role, Value — every interactive element must have an accessible name. The most common failure: icon-only buttons without aria-label.

The European Accessibility Act and the UK

The EAA came into force across EU member states on 28 June 2025 and applies to products and services placed on the EU market by businesses above the EU small-business threshold (10+ staff or €2m+ turnover). UK businesses are in scope if they trade goods or services into the EU. The Act applies to e-commerce sites, ticketing systems, banking services, e-books and consumer electronics among other categories. The accessibility requirement is functionally aligned with WCAG 2.1 AA at minimum; member states have implemented through national legislation with varying enforcement mechanisms. For UK SMBs with EU customers, the practical impact is that WCAG 2.1 AA compliance is now a commercial requirement, not just an ethical one.

The accessibility statement

WCAG 2.2 requires an accessibility statement on every public-facing website that claims compliance. The statement should cover: the WCAG version and conformance level claimed (typically 2.2 AA), known compliance gaps and remediation timelines, the feedback channel for accessibility issues, and the date the statement was last reviewed. UK public-sector sites must follow the GOV.UK accessibility statement template under PSBAR; commercial sites have more flexibility but the same essential structure applies.

The audit process we run

Two-stage. Automated scan first via axe DevTools, WAVE and Lighthouse Accessibility — catches roughly 30-40% of WCAG failures and produces the first triage list. Manual audit second, covering keyboard navigation on every page, screen-reader testing (NVDA on Windows, VoiceOver on macOS and iOS), colour-contrast on text and UI components, focus-management on dynamic content, form-error handling, and the specific 2.2 additions (drag alternatives, target sizes, authentication paths). The manual audit catches the 60-70% the automated tools miss. Allow 4-12 hours of senior engineer time depending on site size; deliverable is a prioritised remediation list with WCAG references for each issue.

The five highest-leverage fixes

(1) Colour contrast — usually the largest single category of issues, and fixable in a single sweep through the colour tokens in the design system. (2) Focus indicators — typically a single CSS rule applied across the site, but it has to be visible and meet the 2.2 appearance criterion. (3) Form labels — every form field with a proper associated label, not placeholder-only. (4) Heading structure — convert any visual-only heading styling to actual heading elements, and remove headings used purely for visual styling. (5) Image alt text — descriptive alt where the image conveys content, empty alt where the image is decorative. These five together typically resolve 60-80% of WCAG failures on a typical SMB site.

The harder fixes

Three categories that need more thought. Drag interactions — anything in the UI built around drag-and-drop needs a single-pointer alternative under 2.2 criterion 2.5.7; the typical fix is to add explicit add/remove buttons next to the drag handles. Authentication — passwords requiring memorisation and CAPTCHAs requiring cognitive tests are now restricted under 3.3.8 and 3.3.9 unless an alternative is offered; the typical fix is to add passkey/WebAuthn support, biometric authentication or magic-link login. Modal and overlay focus management — focus must be trapped inside the modal while open and returned to the trigger element on close; getting this right requires careful JavaScript rather than just CSS.

Tooling that genuinely helps

axe DevTools (free Chrome extension) — the best automated scanner for the daily development workflow. WAVE (free WebAIM tool) — useful complement to axe with a different rule set. NVDA (free Windows screen reader) — the screen reader to test against. VoiceOver (built into macOS and iOS) — the second screen reader. Polypane (paid browser) — accessibility-first browser with built-in audit tooling that catches what other tools miss. Stark (paid Figma plugin) — contrast and accessibility checking in the design tool before code is written.

What "compliant" actually means

WCAG 2.2 AA conformance is binary at the per-criterion level — you either meet the criterion or you do not. Site-level conformance is making the claim that every page meets every AA-level criterion in scope. Most commercial UK sites can reach this with 1-3 weeks of focused remediation work plus an ongoing discipline of checking new content and code against the criteria as it ships. The accessibility statement is the public record of that claim; making the claim without backing it up is now a meaningful legal and reputational exposure.

FAQ

Common questions

Is WCAG 2.2 legally required in the UK?

For public-sector sites, yes — PSBAR 2018 mandates accessibility conformance with WCAG 2.1 AA, and 2.2 is the current working successor. For private-sector sites, WCAG conformance is not directly mandated by UK law, but the Equality Act 2010 has been interpreted by tribunals to require reasonable accessibility, and WCAG is the de-facto standard reasonable adjustments are measured against. For UK businesses trading into the EU, the EAA from June 2025 imposes WCAG 2.1 AA as a commercial requirement.

How long does a typical remediation take?

For a typical SMB site of 20-50 pages with no prior accessibility work: 1-3 weeks of focused engineering time. The first 60-70% of issues clear in the first week through the five highest-leverage fixes; the longer tail (authentication, drag interactions, focus management on complex components) takes the remaining time.

Can I get sued for an inaccessible website?

In the UK, formal litigation has been rare but is increasing. The more common pattern is regulatory pressure (EHRC for Equality Act, ICO where data protection overlaps) and reputational damage. In the US, ADA Title III litigation around website accessibility has produced thousands of complaints per year since 2018 and is a meaningful commercial risk for UK businesses with US customers.

Do I need to test with disabled users?

For full conformance, yes — automated and expert audits cover the technical criteria, but user-acceptance testing with users who use assistive technology routinely surfaces real-world issues the audits miss. For most commercial SMB sites, a structured audit by an accessibility-trained engineer plus targeted user testing on the highest-traffic flows is the practical compliance pattern.

What about overlay widgets like accessiBe or UserWay?

Mixed evidence. They handle some of the easier criteria (font size adjustment, basic contrast toggling) but cannot fix structural problems (incorrect heading hierarchy, missing alt text, inaccessible custom components). Most accessibility specialists view them as cosmetic rather than substantive. WebAIM and other major accessibility advocacy organisations have published cautious-to-negative assessments. We do not recommend them as a substitute for real remediation.

Where does WCAG 3.0 fit in?

WCAG 3.0 is in draft and is years from being a recommendation. WCAG 2.2 remains the current standard and is the right target for 2026 work. The transition to 3.0 will be gradual when it happens; current 2.2 work transfers in concept rather than line-for-line.

Related services

Want it done for you?

The services below apply this guide directly to your site as a one-off engagement.

RedesignSame-Day Website
About this guide

How we wrote this guide.

This guide on wcag 2.2 website accessibility uk was drafted by a senior member of the Same Day Website Launch editorial team — engineers and strategists who ship commercial UK websites every week. Every numerical claim that could be verified is cited to a primary source: the ICO’s published fee schedule, Google’s developer documentation, the platform’s public price page, the original peer-reviewed study, the regulator’s announcement. Where the guide makes claims from our own client data (response rates, conversion lift, build timelines), the data source is named explicitly. Where the guide offers an opinion, it is marked as opinion.

The guide is reviewed by a second member of the team before publication, fact-checked against the cited sources, and dated. When the underlying facts change — a price moves, a regulation updates, a Google algorithm shifts — we update the guide in place, add a dated correction note at the foot, and refresh the modifiedTime in the schema. Guides that have not been touched in 12 months carry a visible “last reviewed” date so the reader can judge currency.

Editorial corrections are welcome at hello@samedaywebsitelaunch.com with the subject line “Editorial correction” — we respond within five working days, update the guide with a dated correction note, and refresh the schema. The intention behind this guide and every guide in the library is the same: produce the resource a UK SMB owner can use to make a defensible decision on the topic without paying for a consultant first.

Why we publish guides

What this library is for.

The guides on this site are not lead-magnets. They are the published answers to the questions clients ask most often before they decide whether to brief us — what is involved in a website migration, how Core Web Vitals affect ranking in 2026, what local SEO actually moves the needle for a small UK business, what UK compliance looks like in practice. Reading the guide should be enough to make the decision; briefing us is the option, not the implied next step.

That editorial stance has a knock-on effect on the kind of inbound the guides generate. The readers who land on these pages and go on to brief a project are reliably the readers for whom the same-day model is the right answer — they have self-qualified through the depth of the content. The conversion rate per visitor on the guide library is materially lower than on the commercial landing pages; the conversion rate per qualified visitor is materially higher. That is the trade we make on purpose.

A closing note

If this guide
helped you decide.

If this guide on wcag 2.2 website accessibility uk resolved your question, you do not need to do anything next — the deliberate goal of the guide library is to give you a defensible answer without a sales conversation attached. If the guide raised follow-up questions specific to your situation, the brief form on the get-started page is the right channel; we reply inside 30 minutes during the working window with a real-human response from the same team that drafted this guide. And if the answer is genuinely that the same-day model fits your specific case, the brief itself takes ten minutes and the build is live by 6 PM the next trading day.

Skip the reading

Want it
built for you?
From £699.

Most of these guides end with “or you could brief us and have it shipped by 6 PM”. One-off pricing, no monthly fees.