POUR Principles
POUR is the acronym for WCAG's four foundational principles: content must be Perceivable, Operable, Understandable, and Robust.
POUR is the mnemonic for the four principles that organize the entire Web Content Accessibility Guidelines. Every WCAG guideline and success criterion sits under one of these four principles, so POUR is a useful mental model for understanding why any given requirement exists. The four principles are Perceivable, Operable, Understandable, and Robust.
The four principles
- Perceivable — information and interface components must be presentable to users in ways they can perceive. This covers text alternatives for images, captions and transcripts for media, sufficient color contrast, and content that does not rely on a single sense such as color alone.
- Operable — user interface components and navigation must be operable. Everything must work by keyboard, users must have enough time to read and interact, content must not be designed in ways known to cause seizures, and people must be able to find their way and know where they are.
- Understandable — information and the operation of the interface must be understandable. Text should be readable, pages should behave in predictable ways, and forms should help users avoid and correct mistakes.
- Robust — content must be robust enough to be interpreted reliably by a wide variety of user agents, including assistive technologies. In practice this means using valid, well-structured markup and correct name, role, and value information so that screen readers and other tools can parse the page.
The value of POUR is diagnostic. When you encounter an accessibility failure, mapping it back to a principle clarifies the underlying problem: a missing caption is a Perceivable failure, a mouse-only control is an Operable failure, an unlabeled error message is an Understandable failure, and a custom widget with no exposed role is a Robust failure. Framing issues this way keeps remediation focused on user impact rather than on checklist mechanics.
Sources
Primary references for the facts on this page. Links open in a new tab.
Turn the principles into a to-do list
A scan groups your issues by the WCAG criteria behind each principle, so you can see at a glance whether your gaps are Perceivable, Operable, Understandable, or Robust problems.
Read the WCAG 2.2 guideRelated terms
WCAG (Web Content Accessibility Guidelines)
WCAG is the W3C's technical standard for making web content accessible, and the benchmark most accessibility laws point to.
WCAG Conformance Levels (A, AA, AAA)
WCAG sorts its success criteria into three conformance levels, A, AA, and AAA, with Level AA being the standard target for legal compliance.
WAI-ARIA
WAI-ARIA is a W3C specification that adds roles, states, and properties to markup so custom interface components can be understood by assistive technologies.
Alt Text
Alt text is the text alternative for an image, required by WCAG success criterion 1.1.1 so that people who cannot see the image still receive its information.
Check your own site
Run a free scan against WCAG 2.2 Level AA. You get a score, a severity breakdown, and fix suggestions in seconds. Automated scanning covers the machine-testable criteria; pair it with manual testing for full coverage.