Start scanning free

( Perceivable / WCAG 1.1.1 )

Image input is missing alt text

This check maps to Non-text Content. Use the guidance below to confirm the issue, understand who it affects and ship a fix.

Serious Level A WCAG 1.1.1 — Non-text Content

What’s wrong

An input type image has no alt text.

Why it matters

Screen reader users hear only an unhelpful control name when alt is missing. They cannot tell what action the button performs.

How to fix it

Use semantic HTML and valid ARIA so assistive technology gets the same state and structure as sighted users. Keep labels and states explicit in markup.

Before
<input type="image" src="/search.svg" />
After
<input type="image" src="/search.svg" alt="Search" />

If this pattern is generated by a component, fix it once in the shared component so every instance inherits the accessible behavior.

Learn more