HTML and XHTML documents that load images.
This technique relates to:
The purpose of this technique is to show how images can be marked so that they can be ignored by Assistive Technology.
If no title attribute is used, and the alt text is set to null (i.e.
alt=""
) it indicates to assistive technology that the image can be safely
ignored.
Note: Although alt=" "
is also valid, alt=""
is recommended.
Note: Have a "null" ALT attribute is not the same as having no ALT attribute.
The following image is used to insert a decorative image on a Web page.
Example Code:
<img src="squiggle.gif" width="20" height="20" alt="" />
Resources are for information purposes only, no endorsement implied.
'Null alt text' in WebAIM's 'Creating Accessible Images' also shows how to do this in Dreamweaver.
(none currently listed)
For each image that should be ignored.
Check that title
attribute is either absent or empty.
Check that alt
attribute is present and empty or contains only
whitespace (but not
)
#1 and #2 are true