Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 627 Bytes

no-redundant-image-alt.md

File metadata and controls

24 lines (16 loc) · 627 Bytes

RailsAccessibility/NoRedundantImageAlt

Rule Details

Alt prop should not contain image or picture as screen readers already announce the element as an image

Resources

Examples

Incorrect code for this rule 👎

<%= image_tag "cat.gif", size: "12x12", alt: "Picture of a cat" %>

Correct code for this rule 👍

<!-- good -->
<%= image_tag "cat.gif", size: "12x12", alt: "A black cat" %>