Back to Guidelines
- Perceivable
- WCAG 1.1.1
- Level A
What Are Decorative Images?
Decorative images are visual-only elements that should not distract from the content or be announced by assistive technologies.
When an image adds no meaning, it should stay out of the accessibility tree so users can move through the page without extra noise.
- Screen reader users who should not hear decorative details.
- Keyboard users who need a clean and predictable tab order.
- Users who benefit from simpler, less noisy page content.
- Improves Accessibility
- Keeps Content Clear
- Better User Experience
- Supports Compliance
Good vs Bad Decorative Image Examples
Use the tabs to compare hidden decorative content with exposed decorative content.
Decorative image hidden from assistive tech

html live code
<img src="/assets/images/principals/decorative-flower.jpeg" alt="" />Why this is correct:
- Uses an empty alt attribute.
- Screen readers ignore the image completely.
- Keeps keyboard navigation focused on meaningful content.
Decorative SVG hidden from screen readers
html live code
<svg aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg"></svg>Why this is correct:
- Hides the icon from assistive technologies.
- Prevents unnecessary keyboard focus.
- Signals that the SVG is only visual decoration.
Implementation Checklist
Progress0 / 6 completed (0%)
Knowledge Check
Answer Yes or No to test your understanding of decorative images.
Score: 0 / 5 · Answered: 0 / 5