CARVIEW |
Select Language
HTTP/2 200
date: Tue, 07 Oct 2025 19:08:21 GMT
content-type: text/html; charset=utf-8
content-encoding: gzip
last-modified: Thu, 02 Oct 2025 20:17:14 GMT
cache-control: max-age=21600
expires: Wed, 08 Oct 2025 01:08:20 GMT
vary: Accept-Encoding
x-backend: www-mirrors
x-request-id: 98afafc22fafc18d
strict-transport-security: max-age=15552000; includeSubdomains; preload
content-security-policy: frame-ancestors 'self' https://cms.w3.org/ https://cms-dev.w3.org/; upgrade-insecure-requests
cf-cache-status: BYPASS
set-cookie: __cf_bm=0JnDxYuhnkWHbTbiWa7lEV_pDOIMboAam8rW3MQYOW0-1759864101-1.0.1.1-GJNSJ9_LSK6OeZ9MAmrarjiTz5ZK7LAG_sFtlhzjj4JOLc_4gsVr6MBtfL.be9tDHmobw2TG2LY7joEGn9fNUQaUqcK9KloO_CrpbpanWHM; path=/; expires=Tue, 07-Oct-25 19:38:21 GMT; domain=.w3.org; HttpOnly; Secure; SameSite=None
server: cloudflare
cf-ray: 98afafc22fafc18d-BLR
alt-svc: h3=":443"; ma=86400
H67: Using null alt text and no title attribute on img elements for images that assistive technology should ignore | WAI | W3C
Skip to content
Technique H67:Using null
Back to Top
Examples of ways to meet WCAG; not required
About WCAG Techniques
Technique H67:Using null alt
text and no title
attribute on img
elements for images that assistive technology should ignore
About this Technique
This technique relates to 1.1.1: Non-text Content (Sufficient).
This technique applies to HTML documents that load images.
Description
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
Having a "null" alt
attribute is not the same as having no alt
attribute.
Examples
Example 1: Inserting a decorative image on a web page
<img alt="" src="squiggle.gif" height="20" width="20">
Related Resources
No endorsement implied.
Tests
Procedure
For each image that should be ignored:
- Check that
title
attribute is either absent or empty. - Check that
alt
attribute is present and empty.
Expected Results
- #1 and #2 are true