Naming and Describing
All interactive elements on a web page must have explicitly defined text to distinguish the element, or else the screen reader software will not know what to speak, thus the element will not be accessible to screen reader users. This distinguishing text is called the accessible name of the element.
In addition to the required accessible name, interactive elements may be given text that further describes the element or provides more information. This supporting description text is called the accessible description of the element.
Accessible Name
Web authors must take additional steps to ensure that the accessible name of each interactive element is properly identified. There are several different components that can be used to provide a required accessible name.
These components will provide an accessible name:
aria-labelledby
aria-label
label
(form elements)alt
(images)value
(input buttons)figcaption
(figure)caption
(table)innerHTML
(container elements)
Use Only One Namer
ANDI advocates a methodology of using only one Namer (accessible name component) per element which will provide consistent screen reader output and minimize accessibility issues.
Accessible Description
In addition to a required accessible name, web authors may add additional support text to further describe interactive elements. There are several components that can be used to provide an accessible description.
These components provide additional information about an element (an accessible description).
aria-describedby
title
Use Only One Describer
Following ANDI's methodology of using only one Describer (accessible describer component), when a Namer is present, will provide consistent screen reader output and minimize accessibility issues.
Use a Describer together with a Namer
Describers are meant to be used along with a Namer, not by themselves.
Grouping
When form elements have a common label that groups them together visually, screen reader users benefit when the elements are contained by a grouping element and the grouping element is given an accessible name.
Using native HTML, the fieldset
tag functions as the container, and the legend
names the group. More info about Fieldset/Legend here.
<fieldset>
<legend>Billing Address</legend>
<label> Street: <input> </label>
<label> State: <input> </label>
<label> Zip: <input> </label>
</fieldset>
Using ARIA, the container should have role=group
and the role=group
element should be given an accessible name using aria-labelledby
or aria-label
.
<div role="group" aria-labelledby="id1">
<strong id="id1">Billing Address</strong>
<label> Street: <input> </label>
<label> State: <input> </label>
<label> Zip: <input> </label>
</div>
For a screen reader user, a benefit of grouping is this: The first time the user focuses on an item in the group, the group name is announced once. If the user navigates to other items within the group, the group name is not announced again. This reduces verbosity compared to if the group name was announced for every element within the group.
[aria-labelledby]
The global attribute aria-labelledby
references other elements to provide an accessible name.
How To Use
The aria-labelledby
attribute establishes an association between
an element and the text that provides the accessible name.
It indicates the ids of other elements
which contain the naming text. The benefit of the aria-labelledby
attribute is that it can reference multiple elements in a specific order.
For example, consider this radio button which is labelled by an
<h1>
heading and a <label>
tag:
<h1 id='id1'>Famous People</h1>
<label id='id2'> Andy Williams
<input type='radio' aria-labelledby='id1 id2'/>
</label>
The accessible name for the radio button will be "Famous People Andy Williams".
In the example above, a space delimited list of ids was provided as the value of the aria-labelledby
.
Screen Reader Usage
Screen readers will speak the text contained within the elements referenced by the aria-labelledby
.
The aria-labelledby
attribute
is a powerful Namer since it can be used to reference several elements which contain text
that can contribute to an accessible name. Screen readers give it a high precedence over other Namers.
Improper Use
This attribute cannot take literal text; it expects an id or a space delimited list of ids only.
[aria-label]
The global attribute aria-label
provides an accessible name.
How To Use
The value given to the aria-label
attribute should contain the literal text that that will
explicitly name an element. The text will not appear on the screen.
<button aria-label='Close'>X</button>
Screen Reader Usage
A screen reader will speak the literal text value of this attribute. Screen readers give it a high precedence over other Namers.
For example, the screen reader output of this button will be the text in the aria-label
not the innerHTML of the button:
<button aria-label='Andy Warhol's Can of Soup'><img src='soup_can.jpg' alt="" />soup</button>
This attribute provides additional details about an element to a person who is visually impaired.
When focus moves to the button, the screen reader would read "Andy Warhol's Can of Soup button".
In the example, the image and the innerHTML "soup" provides information about the button to a sighted user.
The text in the aria-label
"Andy Warhol's Can of Soup" would not appear on screen,
but would be read by the screen reader.
Improper Use
It is advisable to not use aria-label
together with aria-labelledby
on the same element.
[alt]
The alt
attribute is the HTML attribute used to specify alternative text (alt text)
that is to be displayed when the image to which it is applied cannot be rendered.
The alt
attribute is a required attribute of the <img>
, <area>
, and <input[type=image]>
tags.
When applied to images, the alt
attribute provides an accessible name.
How To Use
The alt
attribute should only be placed on <img>
, <area>
,
and <input[type=image]>
tags.
The text of the alt
should concisely describe the image.
If the image is purely decorative, does not require explanation, and does not gain focus,
then an empty string should be used for the value such as alt=""
.
<img src='logo.png' alt='social security administration' />
Screen Reader Usage
The alt
attribute is used by screen readers to speak the content
of images to a person who cannot see the image because of a disablity.
If the alt
has been intentionally set to empty string alt=""
,
then the screen reader will ignore the image.
<label>
The <label>
tag, when properly associated,
provides an accessible name for a form element.
In addition, clicking on a label that is properly associated will move focus to the form element with which it associates.
How To Use
Labels must have explicit associations with the form elements to which they refer.
There are two methods to form the association:
Label/For with Matching Id - explicit association
for
attribute to the label, which references the id
of the form element.
Example:<label for='someId'> Enter Text: </label>
<input type='text' id='someId' />
Nested Label (Label as a container) - implicit association
<label> Enter Text:
<input type='text' />
</label>
Screen Reader Usage
A screen reader will read the <label>
if it is associated with a form element
(as long as the form element does not have an aria-label
or an aria-labelledby
).
Low Mobility Users
Clicking on a label that is associated with a form element will move focus to the form element (this is handled by default in the browser). This functionality aids users with low mobility who have difficulties using a mouse by increasing the clickable area of a form element. This is especially beneficial when a label is associated with radio buttons and checkboxes which are relatively small click "targets". If the label is not properly associated the size of the clickable area will not be automatically increased.
Improper Use
The following example is an improper use of the <label>
tag.
The <label>
tag does not make an association
to the form element.
<label> Improper Use: </label>
<input type='text' />
The example above will generate an accessibility defect.
[value]
The value
property
provides an accessible name for an <input>
button.
The text of the value
will also visually appear on the button.
How To Use
The text of the value
attribute should contain the literal text that will
explicitly name an <input>
button element:
<input type="submit">
,
<input type="button">
,
<input type="reset">
,
<input type="image">
.
<input type='submit' value='button' />
Screen Reader Usage
For input buttons a screen reader will speak the literal text value of this attribute.
innerHTML
The contents of an element: screen text and/or child nodes.
How To Use
Adding screen text to an element is perhaps the best way to add an accessible name,
since every type of user will be able to read the exact same text.
For elements that cannot contain innerHTML such as
<img>
or
<input>
additional components are needed to be accessible.
For basic HTML tags such as
<p>
,
<div>
,
<li>
It is perfectly reasonable to rely on the text within these basic elements to provide an accessible name.
If for some reason this text is not descriptive enough for users relying on screen readers, change the text!
Screen Reader Usage
A screen reader will read the contents of the element.
[aria-describedby]
The global attribute aria-describedby
references other elements to provide an accessible description.
How To Use
The aria-describedby
attribute is used to indicate the IDs of other elements that describe this element.
It establishes an association between an element and the text that provides a description.
For example, consider this button which is described by some paragraph text:
<button aria-describedby='pId'>Submit</button>
<p id='pId'>Clicking on this button will send an email to Andy Cooper</p>
The accessible name for this element will be "Submit Button"
and the accessible description will be "Clicking on this button will send an email to Andy Cooper".
This attribute is very similar to aria-labelledby
which defines the essence of the element,
while aria-describedby
provides a description or more information that the user might need
pertaining to the element.
Screen Reader Usage
Screen readers will speak the aria-describedby
at the end of its spoken phrase.
However, when multiple Describers are used on the same element (such as title
),
one or the other might not be spoken and information could be lost.
Therefore, it is advisable to use only one Describer for an element.
Improper Use
This attribute cannot take literal text; it expects an id or a space delimited list of ids only.
<legend>
Within a <fieldset>
, the <legend>
tag
associates a group of form elements.
How To Use
The <legend>
tag works best in this scenario:
- Within a
<fieldset>
- The first child of the
<fieldset>
- Naming a form element group
- Each form element must have an associating
<label>
tag and be contained in the<fieldset>
- The
<legend>
text will be spoken before the<label>
text. - Do not use with buttons (place buttons outside the
<fieldset>
) - Do not use other Accessibility Components including
title
Here is a code example of the proper usage of legend:
<fieldset>
<legend>What Is Your Favorite Color?</legend>
<label>Red: <input type="radio" name="color" value="1" /></label>
<label>Yellow: <input type="radio" name="color" value="2" /></label>
<label>Blue: <input type="radio" name="color" value="3" /></label>
</fieldset>
<button>Submit</button>
When used this way, each <label>
provides the distinctive name
for its associating form element,
and the <legend>
names the group relationship of the
elements within the <fieldset>
.
Improper Use
Combining <legend>
with any other accessibility components and outside of
the recommended scenario described above will
cause screen reader inconsistencies or accessibility issues depending on the browser and screen reader version.
Legend Alternative
An alternative to <fieldset>
/<legend>
is role=group
.
[title]
The global attribute title
can be placed on any HTML element.
It will also generate a "tooltip" when a mouse user hovers over the element.
How To Use
The value given to the title
attribute contains the literal text that that will
explicitly describe an element.
The length of the value is limited to 512 total characters in Internet Explorer
(source).
Depending on the browser, the tooltip generated by the title attribute may not be able to
be triggered (seen) without using a mouse.
Also, the title
does not appear on touch screen devices (think mobile).
Therefore, title
should not be the only means of conveying important information.
Screen Reader Usage
A screen reader will speak the literal text value of this attribute.
[tabindex]
The global attribute tabindex
provides a resting location for keyboard focus.
How To Use
The value given to the tabindex
attribute should contain a numeric value.
The number specifies the tab order of an element (when the "tab" key is used for navigation).
The tabindex
value does not have to be unique.
A tabindex
value of zero (tabindex="0"
) is the most common usage which
places it in the "normal" or literal sequence in which it exists in the DOM tree.
A tabindex
value can be negative (tabindex="-1"
) but this will remove the element from the
tab order, in which case, users will not be able to tab to the element. This technique is useful for sending focus to
an element programmatically where normal tab key navigation is not intended.
Screen Reader Usage
A screen reader will not speak the tabindex.
[accesskey]
The global attribute accesskey
provides the ability to hit a key combination and shift focus or "click" a button.
This is sometimes called a "hotkey" or "quick key".
To activate an accesskey, different browsers use different key combinations: Internet Explorer, Chrome, and Safari use the "alt" key. Firefox uses "alt+shift" together.
How To Use
When adding an accesskey
to an element, ensure that the element is focusable (natively or has a tabindex).
Also ensure that the accesskey does not interfere with other accesskeys on the page. As a best practice, accesskeys should be unique. Accesskeys on buttons and links should be unique since the moment the accesskey is pressed, the button or link is selected. Contrarily, some browsers allow duplicate accesskeys to be used to jump around to several focusable sections of a page. However, as a best practice, section jumping behavior based on repeated presses of one key command should be implemented using javascript keypress event handling.
Most browsers use hotkeys to kick off browser menu functions, such as "File" or "Help". Care should be taken not to override these keys. Modern browsers allow for this, but from an accessibility standpoint, it should be avoided if possible.
Screen Reader Usage
A screen reader will announce the value of the accesskey when the element with the accesskey receives focus.
Table Cell to Header Associations
The cells of data tables must have additional markup to indicate the correct associations between table header cells and table data cells. Simply declaring a cell a <th> does not always automatically imply the correct association. Table cell associations can be programatically identifed by using one of two methods, the Scope Method or Headers/id Method. The method chosen is often dictated by the design/structure of the table. Moreover, only one association method should be used at a time per table for the sake of simplicity and maintainability.
Scope Method
scope
attribute should be assigned to
each table header <th>
that forms a column header or row header. Example:
<table>
<caption>scope method</caption>
<tr>
<th scope="col">col 1</th>
<th scope="col">col 2</th>
<th scope="col">col 3</th>
</tr>
<tr>
<th scope="row">row 1</th>
<td>col 2</td>
<td>col 3</td>
</tr>
<tr>
<th scope="row">row 2</th>
<td>cell</td>
<td>cell</td>
</tr>
<tr>
<th scope="row">row 3</th>
<td>cell</td>
<td>cell</td>
</tr>
</table>
Headers/id Method
<th>
should have a unique id
attribute
and all cells which associated with that table header should have a headers
attribute whose
value references the id
of the table header cell. Example:
<table>
<caption>headers method</caption>
<tr>
<th id="col1">col 1</th>
<th id="col2">col 2</th>
<th id="col3">col 3</th>
</tr>
<tr>
<th id="row1" headers="col1">row 1</th>
<td headers="row1 col2">col 2</td>
<td headers="row1 col3">col 3</td>
</tr>
<tr>
<th id="row2">row 2</th>
<td headers="row2 col2">cell</td>
<td headers="row2 col3">cell</td>
</tr>
<tr>
<th id="row3">row 3</th>
<td headers="row3 col2">cell</td>
<td headers="row3 col3">cell</td>
</tr>
</table>
Which Table Cell Association Method should be used?
Since only one method should be used at a time, deciding between the Scope Method and the Headers/id Method method mostly depends on the design/structure of the table.
Most tables can use the Scope Method, even in some "complex" designs. If text alignment, font size, color or other style adjustments are being used to differentiate table headers within the same column or row, the Headers/id Method should be used.
Many web authors would agree that the Scope Method is easier to maintain and reduces the likelihood of any existing accessibility becoming "broken" with future table modifications. However, the Headers/id Method offers an explicit way of making associations in a specific order for highly complex tables. Remember that all users benefit from readability when table design is simplified.