Omit the attribute
Some assistive technology may announce the filename or expose an unnamed image.
<img src="blue-wave-divider.svg">
Images · Concept
When an image adds no information or repeats nearby content, an empty alternative tells assistive technology to skip it.
The principle
alt="" is not missing content. It is an explicit instruction: this image adds nothing to announce.
Three similar-looking choices
An omitted attribute leaves behavior uncertain. A descriptive value adds noise. A present but empty value communicates the author’s decision that the image is decorative or redundant.
Some assistive technology may announce the filename or expose an unnamed image.
<img src="blue-wave-divider.svg">
The description interrupts the reading flow without adding useful information.
<img src="blue-wave-divider.svg"
alt="Decorative blue wavy line">
The image remains visible while assistive technology can ignore it.
<img src="blue-wave-divider.svg" alt="">
Reading flow
A decorative divider may be visually helpful without belonging in the spoken reading stream.
Two common cases
The deciding question is whether the image contributes information in context—not whether it is beautiful, photographic, or important to the visual design.
If the flourish carries no meaning, prefer a CSS background or generated decoration so it never enters the accessibility tree.
The thumbnail repeats the product identity supplied by the nearby name and variant, so its empty alt prevents duplicate output.
Do not silence meaning
An image is informative when removing it would remove information needed to understand or operate the page. Empty alt is correct only when equivalent meaning remains.
Color, shape, or condition may be essential when someone is choosing what to buy.
A symbol that is the only indication of success, warning, or error carries information.
Visualized relationships and data need an equivalent, often longer than a short alt attribute.
Quick test
<img> has exactly alt="", with no space.title, or role="presentation" instead of the native empty alt.