Visuals / SVG Simple
WCAG Description of Component
The HTML Accessibility API Mappings specify that the
<svg>element has an implicit role ofgraphics-document. However browser support for thegraphics-documentrole and the SVG Accessibility API Mappings is inconsistent.This rule is limited to the explicit use of roles, as a clear indication that content should convey meaning, until the SVG Accessibility API Mappings is more stable and browser support is more consistent.
Browser and assistive technology support for SVG
<title>and<desc>elements is currently inconsistent. Using WAI ARIA in combination with theimgrole for non-decorative<svg>elements significantly improves accessibility browser support.Until browser support for the SVG Accessibility API Mappings is more consistent it is recommended to explicitly remove decorative
Reference link<svg>elements from the accessibility tree.
Recommended to take ~15m and review this article in full.
Functional Description
- Within the
<svg>tag, the first element must be a<title>tag that contains the svg title - On the
<svg>tag there should be aria-labelledby that connects to the<title>id - On the
<svg>tag there should berole="img" - Note: Note: title is included in
aria-labelledbybecause it has better screen-reader support thanaria-describedby
How to use this component
- On the
<svg>element includerole="img" - On the
<svg>element includearia-labelledby="uniqueTitleID" - Include a
titletag within the<svg>. Give thistitletag a unique ID that corrospons with the one entered in thearia-labelledbyattribute titletags should be short and concise
Component Example
Simple SVG SourceCode Snippets
HTML
<svg role="img" aria-labelledby="uniqueTitleID" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2335.5 1240.7">
<title id="uniqueTitleID">The title of the svg</title>
[... svg inside code]
</svg>
History Tracking
- Code orginally created by Kelly; Approved by Steen on Nov 20,2023