fixing-accessibility
Fix accessibility issues.
how to use
Do not rewrite large parts of the UI. Prefer minimal, targeted fixes.
When to Use
Reference these guidelines when:
- adding or changing buttons, links, inputs, menus, dialogs, tabs, dropdowns
- building forms, validation, error states, helper text
- implementing keyboard shortcuts or custom interactions
- working on focus states, focus trapping, or modal behavior
- rendering icon-only controls
- adding hover-only interactions or hidden content
rule categories by priority
| priority |
category |
impact |
| 1 |
accessible names |
critical |
| 2 |
keyboard access |
critical |
| 3 |
focus and dialogs |
critical |
| 4 |
semantics |
high |
| 5 |
forms and errors |
high |
| 6 |
announcements |
medium-high |
| 7 |
contrast and states |
medium |
| 8 |
media and motion |
low-medium |
| 9 |
tool boundaries |
critical |
quick reference
1. accessible names (critical)
- every interactive control must have an accessible name
- icon-only buttons must have aria-label or aria-labelledby
- every input, select, and textarea must be labeled
- links must have meaningful text (no “click here”)
- decorative icons must be aria-hidden
2. keyboard access (critical)
- do not use div or span as buttons without full keyboard support
- all interactive elements must be reachable by Tab
- focus must be visible for keyboard users
- do not use tabindex greater than 0
- Escape must close dialogs or overlays when applicable
3. focus and dialogs (critical)
- modals must trap focus while open
- restore focus to the trigger on close
- set initial focus inside dialogs
- opening a dialog should not scroll the page unexpectedly
4. semantics (high)
- prefer native elements (button, a, input) over role-based hacks
- if a role is used, required aria attributes must be present
- lists must use ul or ol with li
- do not skip heading levels
- tables must use th for headers when applicable
5. forms and errors (high)
- errors must be linked to fields using aria-describedby
- required fields must be announced
- invalid fields must set aria-invalid
- helper text must be associated with inputs
- disabled submit actions must explain why
6. announcements (medium-high)
- critical form errors should use aria-live
- loading states should use aria-busy or status text
- toasts must not be the only way to convey critical information
- expandable controls must use aria-expanded and aria-controls
7. contrast and states (medium)
- ensure sufficient contrast for text and icons
- hover-only interactions must have keyboard equivalents
- disabled states must not rely on color alone
- do not remove focus outlines without a visible replacement
8. media and motion (low-medium)
- images must have correct alt text (meaningful or empty)
- videos with speech should provide captions when relevant
- respect prefers-reduced-motion for non-essential motion
- avoid autoplaying media with sound
9. tool boundaries (critical)
- prefer minimal changes, do not refactor unrelated code
- do not add aria when native semantics already solve the problem
- do not migrate UI libraries unless requested
common fixes
<!-- icon-only button: add aria-label -->
<!-- before --> <button><svg>...</svg></button>
<!-- after --> <button aria-label="Close"><svg aria-hidden="true">...</svg></button>
<!-- div as button: use native element -->
<!-- before --> <div
<!-- after --> <button
<!-- form error: link with aria-describedby -->
<!-- before --> <input id="email" /> <span>Invalid email</span>
<!-- after --> <input id="email" aria-describedby="email-err" aria-invalid="true" /> <span id="email-err">Invalid email</span>
review guidance
- fix critical issues first (names, keyboard, focus, tool boundaries)
- prefer native HTML before adding aria
- quote the exact snippet, state the failure, propose a small fix
- for complex widgets (menu, dialog, combobox), prefer established accessible primitives over custom behavior
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: fixing-accessibility3description: Audit and fix HTML accessibility issues including ARIA labels, keyboard navigation, focus management, color contrast, and form errors. Use when adding interactive controls, forms, dialogs, or reviewing WCAG compliance.4license: MIT5---67# fixing-accessibility89Fix accessibility issues.1011## how to use1213- `/fixing-accessibility`14 Apply these constraints to any UI work in this conversation.1516- `/fixing-accessibility <file>`17 Review the file against all rules below and report:18 - violations (quote the exact line or snippet)19 - why it matters (one short sentence)20 - a concrete fix (code-level suggestion)2122Do not rewrite large parts of the UI. Prefer minimal, targeted fixes.2324## When to Use25Reference these guidelines when:26- adding or changing buttons, links, inputs, menus, dialogs, tabs, dropdowns27- building forms, validation, error states, helper text28- implementing keyboard shortcuts or custom interactions29- working on focus states, focus trapping, or modal behavior30- rendering icon-only controls31- adding hover-only interactions or hidden content3233## rule categories by priority3435| priority | category | impact |36|----------|----------|--------|37| 1 | accessible names | critical |38| 2 | keyboard access | critical |39| 3 | focus and dialogs | critical |40| 4 | semantics | high |41| 5 | forms and errors | high |42| 6 | announcements | medium-high |43| 7 | contrast and states | medium |44| 8 | media and motion | low-medium |45| 9 | tool boundaries | critical |4647## quick reference4849### 1. accessible names (critical)5051- every interactive control must have an accessible name52- icon-only buttons must have aria-label or aria-labelledby53- every input, select, and textarea must be labeled54- links must have meaningful text (no “click here”)55- decorative icons must be aria-hidden5657### 2. keyboard access (critical)5859- do not use div or span as buttons without full keyboard support60- all interactive elements must be reachable by Tab61- focus must be visible for keyboard users62- do not use tabindex greater than 063- Escape must close dialogs or overlays when applicable6465### 3. focus and dialogs (critical)6667- modals must trap focus while open68- restore focus to the trigger on close69- set initial focus inside dialogs70- opening a dialog should not scroll the page unexpectedly7172### 4. semantics (high)7374- prefer native elements (button, a, input) over role-based hacks75- if a role is used, required aria attributes must be present76- lists must use ul or ol with li77- do not skip heading levels78- tables must use th for headers when applicable7980### 5. forms and errors (high)8182- errors must be linked to fields using aria-describedby83- required fields must be announced84- invalid fields must set aria-invalid85- helper text must be associated with inputs86- disabled submit actions must explain why8788### 6. announcements (medium-high)8990- critical form errors should use aria-live91- loading states should use aria-busy or status text92- toasts must not be the only way to convey critical information93- expandable controls must use aria-expanded and aria-controls9495### 7. contrast and states (medium)9697- ensure sufficient contrast for text and icons98- hover-only interactions must have keyboard equivalents99- disabled states must not rely on color alone100- do not remove focus outlines without a visible replacement101102### 8. media and motion (low-medium)103104- images must have correct alt text (meaningful or empty)105- videos with speech should provide captions when relevant106- respect prefers-reduced-motion for non-essential motion107- avoid autoplaying media with sound108109### 9. tool boundaries (critical)110111- prefer minimal changes, do not refactor unrelated code112- do not add aria when native semantics already solve the problem113- do not migrate UI libraries unless requested114115## common fixes116117```html118<!-- icon-only button: add aria-label -->119<!-- before --> <button><svg>...</svg></button>120<!-- after --> <button aria-label="Close"><svg aria-hidden="true">...</svg></button>121122<!-- div as button: use native element -->123<!-- before --> <div onclick="save()">Save</div>124<!-- after --> <button onclick="save()">Save</button>125126<!-- form error: link with aria-describedby -->127<!-- before --> <input id="email" /> <span>Invalid email</span>128<!-- after --> <input id="email" aria-describedby="email-err" aria-invalid="true" /> <span id="email-err">Invalid email</span>129```130131## review guidance132133- fix critical issues first (names, keyboard, focus, tool boundaries)134- prefer native HTML before adding aria135- quote the exact snippet, state the failure, propose a small fix136- for complex widgets (menu, dialog, combobox), prefer established accessible primitives over custom behavior137138## Limitations139- Use this skill only when the task clearly matches the scope described above.140- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.141- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.