What is WCAG? Plain-English Guide to Web Accessibility (2026)
# What is WCAG? A Plain-English Guide to Web Accessibility (2026)
WCAG (Web Content Accessibility Guidelines) is the global standard for digital accessibility, published by the World Wide Web Consortium (W3C). The current version is WCAG 2.2, and most teams target conformance level AA. The guidelines are built on four principles — Perceivable, Operable, Understandable, and Robust — which together cover how people with disabilities use the web.
If you build websites or apps in 2026, the word "WCAG" is going to come up. It will come up in design reviews. It will come up in vendor security questionnaires. And, increasingly, it will come up in legal letters. ADA Title III lawsuits have set new records year after year, the European Accessibility Act (EAA) became enforceable on June 28, 2025, and the U.S. Department of Justice has finalized a rule under ADA Title II that points state and local governments straight at WCAG 2.1 Level AA.
So this is the primer. What WCAG actually is, who has to follow it, what the levels and principles mean, and where to start if you only have an afternoon. No legalese, no jargon, just the parts that matter for shipping accessible work.
On this page
- The 4-step afternoon plan — if you only have a few hours
- A short history of WCAG
- Who WCAG applies to — laws by region and sector
- The 4 POUR principles — Perceivable, Operable, Understandable, Robust
- WCAG levels: A, AA, AAA — and which one to target
- The most-violated WCAG criteria — the 8 issues to fix first
- How to test for WCAG compliance — automated, manual, professional
- Common WCAG myths, busted
- What's coming: WCAG 3.0
- Resources and where to go next
- FAQ
The 4-step afternoon plan
If you have one afternoon and want maximum impact before reading the rest of this guide, do these four things in order. Each step on its own moves the needle; together they fix most of what an automated tool would flag in a real audit.
- Run axe DevTools on your three highest-traffic pages. Note every contrast and label failure.
- Fix every contrast failure with our color contrast checker. This alone clears the single most common WCAG violation on the web.
- Tab through each page with the keyboard. Note any traps, dead ends, or invisible focus rings.
- Audit alt text on the homepage and main product pages — see image alt text for what good looks like.
That alone moves you a long way toward AA. The rest of this article gives you the why, the framework, and the deeper testing playbook so the work compounds instead of becoming busywork.
A short history of WCAG
The web's accessibility standard is older than most of the frameworks you use day to day. Here is the rough timeline:
- WCAG 1.0 (1999) — the original guidelines. Heavily focused on HTML, written before single-page apps existed.
- WCAG 2.0 (2008) — the rewrite that introduced the POUR principles and the A/AA/AAA conformance model. Still cited in many laws.
- WCAG 2.1 (2018) — added 17 new criteria covering mobile, low vision, and cognitive disabilities.
- WCAG 2.2 (2023) — published in October 2023. Adds 9 new criteria (focus appearance, dragging movements, target size, and more).
- WCAG 3.0 (in development) — a complete rethink with a scoring model instead of pass/fail. Still a working draft, no firm release date.
The W3C is the standards body. Inside the W3C, the Web Accessibility Initiative (WAI) does the actual writing. Both governments and private companies cite WCAG by version number, so "WCAG 2.1 AA" and "WCAG 2.2 AA" mean different (though similar) things in a contract.
Who WCAG applies to

Short answer: in 2026, WCAG applies to a lot more sites than it used to. The reach depends on where you operate and who your users are.
Government and public sector
In the United States, Section 508 of the Rehabilitation Act requires federal agencies and their contractors to meet WCAG 2.0 Level AA. The 2024 ADA Title II rule extends similar requirements to state and local governments by 2026 or 2027, depending on size. Public universities are covered under Section 504 of the Rehabilitation Act.
In the European Union, public sector bodies have been subject to the Web Accessibility Directive since 2018. That directive points to WCAG 2.1 AA via the EN 301 549 harmonized standard.
Public-facing commercial sites (ADA Title III)
This is the big one for businesses. ADA Title III covers "places of public accommodation," and U.S. courts have ruled that this includes websites with a clear nexus to a physical business — and increasingly, websites on their own.
ADA Title III web-accessibility lawsuits run in the thousands of federal filings every year, with retail, food service, and entertainment consistently leading the pack — see the latest Seyfarth ADA Title III filings tracker for the current count. Most settlements require WCAG 2.1 AA conformance with annual audits.
European Accessibility Act (EAA)
The EAA went into force on June 28, 2025. It applies to private companies selling certain products and services to EU consumers — e-commerce, banking, e-books, transport ticketing, telecoms, and more. Even if you are based outside the EU, if you sell to EU consumers, you are likely in scope. The technical baseline is WCAG 2.1 AA.
Education and healthcare
Section 504 of the Rehabilitation Act and Title II of the ADA pull most U.S. schools and universities in. Healthcare providers receiving federal funding (basically all of them) are covered by Section 1557 of the Affordable Care Act, which has been read to require WCAG conformance for patient-facing tools.
Voluntary adoption
Plenty of private companies follow WCAG even when not strictly required. Reasons range from procurement (enterprise customers ask for VPATs), to talent (accessibility-minded designers want to work somewhere that takes it seriously), to plain good design — accessible products tend to be clearer for everyone.
The 4 POUR principles

Every WCAG success criterion sits under one of four principles. The acronym is POUR, and once you know it, the rest of the standard makes a lot more sense.
Perceivable
Content has to be presentable to users in ways they can perceive. If a user cannot see, hear, or otherwise sense the content, nothing else matters.
This principle covers alternative text for images, captions and transcripts for video, color contrast, and content that adapts to assistive tech. It does not mean every user must be able to use every sense — it means there is always at least one way to perceive the content.
Two example success criteria:
- 1.1.1 Non-text Content (Level A) — every image, icon, and chart has a text alternative. We dig into this in our image alt text guide.
- 1.4.3 Contrast (Minimum) (Level AA) — text needs a contrast ratio of at least 4.5:1 against its background (3:1 for large text). For the deep dive, see color contrast and WCAG.
Operable
Users have to be able to operate the interface. The keyboard, the mouse, touch, voice — whichever they use, the page has to respond.
This is where keyboard navigation lives. It is also where you find rules about giving users enough time, avoiding seizure-inducing flashes, and helping people find their way around with skip links and clear focus rings.
Two example success criteria:
- 2.1.1 Keyboard (Level A) — all functionality must work from a keyboard alone, no mouse required.
- 2.4.7 Focus Visible (Level AA) — when an element gets keyboard focus, the focus state must be visible. Removing default focus rings without replacing them is a classic violation.
Understandable
Content and the interface must be understandable. That covers readable text, predictable navigation, and helpful error messages on forms.
Understandable does not mean dumbed down. It means consistent — buttons that look like buttons, labels that say what they do, and forms that explain what went wrong instead of just turning red.
Two example success criteria:
- 3.1.1 Language of Page (Level A) — set a
langattribute on theelement so screen readers pronounce content correctly. - 3.3.2 Labels or Instructions (Level A) — every form field needs a visible label or clear instructions, not just placeholder text.
Robust
Content must work across user agents — current browsers, current screen readers, and the assistive tech of five years from now. In practice, this is the principle that says "use semantic HTML and valid ARIA."
If you build a custom dropdown out of Two example success criteria: WCAG has three conformance levels. Each one is a higher bar, and each higher bar includes everything below it. In WCAG 2.2, the criteria break down like this: Level A criteria are baseline. They cover things like "images have alt text," "video has captions," "the page works without a mouse," and "you do not use color alone to convey information." If you fail Level A, real users are locked out. You should consider Level A the absolute minimum. No serious organization claims Level A as their target — it is what you meet on the way to AA. Level AA is the level cited in ADA settlements, the EAA, Section 508, and most procurement contracts. When someone says a site is "WCAG-compliant," they almost always mean AA. AA adds tighter contrast requirements, captions for live video, focus indicators, consistent navigation, and resizing without loss of content. It is achievable for nearly all content, and meeting it gets you most of the way to genuine accessibility. AAA is the gold standard. It includes things like 7:1 contrast for normal text, sign language interpretation for prerecorded video, and reading level no higher than lower secondary education. W3C explicitly says you should not target full AAA conformance for entire sites, because some criteria simply cannot be met by some content. Instead, teams aim for "AA + some AAA where it matters" — for example, AAA contrast on safety-critical interfaces, or AAA reading level on government information pages. When someone tells you their site is "WCAG AA compliant," that is the right answer 95 percent of the time. AAA claims should make you ask follow-up questions. Beautiful backgrounds, pro annotations, GIF recording, and instant cloud sharing — all in one app. Pay $39 once, own it forever. WebAIM publishes an annual analysis of the top one million homepages. The same handful of issues come up year after year. If you fix these, you have done most of the work. The single most common WCAG failure. WebAIM's annual Million analysis consistently finds low-contrast text on around 80% of homepages. That ratio has barely moved in years. The rule itself is simple. Normal text needs a 4.5:1 contrast ratio against its background. Large text (24px or 18.66px bold and up) needs 3:1. Logos and incidental decoration are exempt. The trouble is that designers love light gray on white. It feels modern. It also fails AA in seconds. Run any link, body text, or muted helper copy through our free color contrast checker, or read the longer explainer at color contrast and WCAG for ratios, formulas, and worked fixes. The second-most-common failure: images without Useful alt text describes the image's purpose, not just its contents. Decorative images get Forms break under WCAG when fields lack visible labels, when labels are not programmatically connected to inputs, or when placeholder text is used as a label. Once the placeholder disappears on focus, screen reader users have no way to know what the field is for. The fix is one HTML attribute: Custom components built with The pragmatic fix is to use real elements: Designers strip default focus rings because they look "ugly," and then forget to add a replacement. Keyboard users tab into the page and have no idea where they are. Modern CSS has the answer: Every page needs a unique, descriptive "Click here," "read more," "learn more" — all bad. A screen reader user navigating links-only on a page hears "click here, click here, click here." Useful link text describes the destination: "Read our refund policy," "Download the iOS app." Skipping from Testing for WCAG conformance is a layered job. No single tool catches everything. Here is the realistic stack. These are the fast, free, repeatable checks you should run on every page. These tools catch missing alt text, low contrast, missing labels, invalid ARIA, and a long list of programmatic checks. They will not catch whether your alt text is meaningful, whether the focus order makes sense, or whether your custom dropdown is actually usable. That is what manual testing is for. The other 70 percent of WCAG issues need a human. The basics: The MDN team's Understanding WCAG guide is a good reference if you want to dig deeper into specific criteria during a manual pass. When the stakes are high — government contracts, healthcare, financial services, anything with regulatory exposure — bring in a professional team. Vendors like Deque, Level Access, and TPGi do full WCAG audits with expert reviewers and produce VPAT documents your procurement team will ask for. A serious audit costs in the low thousands per site for small projects and tens of thousands for large platforms. The output is a list of specific failures, severity ratings, and recommended fixes — typically delivered as both a WCAG conformance report and a VPAT. When you find a WCAG issue, the fix often lives in a different codebase than where you found it. A short Loom or an annotated screenshot in your bug tracker is way faster than describing "the focus ring disappears on the third tab inside the search modal" in words. This is where a quick capture-and-annotate tool earns its keep. ScreenSnap Pro lets you grab a region, draw an arrow on the broken focus state, blur any sensitive data, and drop the result straight into Linear or GitHub — useful when you are filing accessibility tickets day after day. It also runs on both Mac and Windows for cross-platform teams. Pay once, $39, and you keep it forever, which beats the per-seat pricing of most subscription capture tools. A few patterns come up over and over again. They are wrong, and they cost teams real time. Myth: "Automated tools catch everything." False. Independent studies put automated coverage at around 30% of WCAG issues. Tools tell you that alt text exists; they cannot tell you whether the alt text is useful. Tools tell you that focus is visible; they cannot tell you whether the focus order makes sense. Myth: "WCAG is only for blind users." False. WCAG covers visual, auditory, motor, cognitive, and speech disabilities. It also helps users with temporary impairments (broken arm, eye strain), situational ones (bright sun, noisy environment), and aging-related changes. Myth: "AA is mandatory by law everywhere." Depends on jurisdiction. ADA Title III in the U.S. does not name a specific WCAG version, though courts and the DOJ consistently point at WCAG 2.1 AA. Section 508 does name a version. The EAA names WCAG 2.1 AA via EN 301 549. If you operate in multiple countries, talk to a lawyer who knows accessibility law. Myth: "Adding Myth: "Overlay widgets make my site WCAG-compliant." Heavily disputed. Most accessibility experts and disability advocates argue that overlays do not fix underlying WCAG failures and sometimes introduce new ones. They are not a substitute for accessible code. Myth: "WCAG conflicts with good design." Not really. Most WCAG criteria are about clear hierarchy, readable text, predictable behavior, and meaningful labels. Those are good design. WCAG 3.0 is the next major version, and it is a big rewrite. It is still a working draft — no firm release date, with most observers expecting a full Recommendation no earlier than 2027. Two changes worth knowing now: You do not need to chase WCAG 3.0 today. Most laws and contracts will reference WCAG 2.1 or 2.2 AA for years. But if you are reading the W3C's WCAG 3 introduction and seeing your team in the silver-level descriptions, you are in good shape for the transition. A short curated list of the resources that are actually worth bookmarking. You've already seen the 4-step afternoon plan at the top of this article. Once that's done, the next layer of work is: Each step is a multiple of the one before it in effort, but each catches a layer of issues automated tools miss. WCAG is the standard. The current version is 2.2, the level most teams aim for is AA, and the four principles you will keep coming back to are Perceivable, Operable, Understandable, and Robust. Color contrast, alt text, keyboard access, and visible focus are the four areas where most sites fall short — and the four areas where a small fix delivers the biggest user benefit. If you want a free starting point, run your colors through our color contrast checker, tab through your homepage, and check your alt text. That is enough to ship a measurably more accessible product this week. Indie developer, founder of ScreenSnap Pro. A decade of shipping consumer Mac apps and developer tools. Read full bio ScreenSnap Pro turns plain screenshots into polished visuals — backgrounds, annotations, GIF recording, and instant cloud links.WCAG levels: A, AA, AAA

Level Criteria What it means A 30 The minimum. Failing any of these makes content unusable for some people. AA 50 (cumulative) The industry standard and the level most laws require. AAA 28 (cumulative 78) Enhanced accessibility. Not all content can meet this. Level A — the floor
Level AA — the standard
Level AAA — the ceiling
![]()
Tired of plain screenshots? Try ScreenSnap Pro.
The most-violated WCAG criteria

1. Low color contrast (1.4.3)
2. Missing alt text (1.1.1)
alt attributes, or with placeholder values like alt="image" or alt="picture". Both are barriers — the first leaves screen reader users guessing, the second wastes their time with noise.alt="" (empty, but the attribute is there). For everything else, our image alt text guide walks through the rules.3. Form labels missing or wrong (1.3.1, 3.3.2)
paired with . Or wrap the input inside the label. Both work.4. Keyboard inaccessibility (2.1.1)
, , , . If you must build something custom, you have to add tabindex, key handlers for Enter/Space/Arrow keys, and the right ARIA roles.5. Focus not visible (2.4.7)
:focus-visible lets you show a focus ring only for keyboard users, not mouse clicks. Just do not delete the indicator without replacing it.6. Empty page titles (2.4.2)
. "Home — Acme" works. "Untitled Document," "Page 2," or just "Acme" do not. Screen reader users hear the title first when a page loads, and tab order in browsers depends on it too.7. Generic link text (2.4.4)
8. Heading hierarchy issues (1.3.1)
to , using headings for visual styling, or having multiple tags on a page all break the document outline that assistive tech relies on. Headings are the table of contents — they should make sense if you read them in order.How to test for WCAG compliance

Automated tools (catch about 30%)
Manual testing
Professional audits
Pro tip: capture issues with annotated screenshots
Common WCAG myths, busted
alt="image" is enough." Painfully false. That kind of placeholder is sometimes worse than nothing, because it tells screen readers "there is an image here, called image." Useful alt text describes the purpose. Our image alt text guide covers what good looks like.What's coming: WCAG 3.0

Resources and where to go next
Official sources (start here)
Tooling
Hands-on tools we maintain
Where to go after the afternoon plan
Frequently Asked Questions
Bottom line
![]()
Morgan
Indie Developer
Make every screenshot look pro.


