Image Has Alt
April 3, 2023 ยท View on GitHub
Rule Details
<img> should have an alt prop with meaningful text or an empty string for decorative images.
Resources
Examples
Incorrect code for this rule ๐
<img src="logo.png">
Correct code for this rule ๐
<!-- good -->
<img alt="" src="logo.png" >
<!-- also good -->
<a href='https://github.com/'><img alt="GitHub homepage" src="logo.png" ></a>