Skip to main content

Accessibility Guide

Practices and tools for making products and services accessible to everyone.

Forms

Making forms accessible is a simple process. Each form element should be associated with its instructions and errors, and everything should be accessible via the keyboard.

Testing

  1. Identify each form element.
  2. Find all instructions associated with each element.
    • It’s a failure if a form element isn’t programatically associated with all instructions. This includes legends, labels, hint text and tooltips.
    • A common way of achieving this is using fieldset and legend tags. Fieldset is used to group a set of elements. Legend is the first child of a fieldset tag and provides context for those fields.
  3. Ensure all field elements are accessible via the keyboard.
    • If the form can’t be filled out with just a keyboard, this is a failure.
  4. Check for title attributes
    • Title attributes can be a substitute for labels.
    • If the title attributes provide all the related information it passes, if they provide extra information it fails.
    • Title attributes aren’t accessible via keyboard.

Examples

Passes

Please enter your name
What's your favorite soup?

Note

Code examples don’t include styling markup for clarity of the technique being explained.

<fieldset>
  <legend>Please enter your name</legend>
  <label for="firstname">First</label>
  <input type="text" id="firstname"><br>
  <label for="lastname">Last</label>
  <input type="text" id="lastname">
</fieldset>

<fieldset>
  <legend>What's your favorite soup?</legend>
  <input type="radio" name="soup" value="frenchonion" id="frenchonion" title="French onion"><label for="frenchonion">French onion</label>
  <input type="radio" name="soup" value="chicken" id="chicken" title="Chicken noodle"><label for="chicken">Chicken noodle</label>
  <input type="radio" name="soup" value="tomato" id="tomato" title="Tomato"><label for="tomato">Tomato</label>
</fieldset>

First and last name form

Each form element has a label, and it’s associated with the for attribute. The for attribute refers to the id of the input. When looking at this form, “First” and “Last” wouldn’t make sense without “Name.” This is associated with the fieldset and legend. All elements are wrapped in a fieldset. There can only be one legend tag per fieldset. Anything in the legend tag will be associated.

Favorite soup form

Fieldset and legend is often used for radio buttons as its the easiest way to associate the radio buttons with the question. Notice there are no labels for the radio buttons, but each button has a title attribute for assistive technology to read.

Fails

Enter your name
This question is required
What's your favorite soup?
<fieldset>
  <legend>Enter your name</legend>
  <label for="first_name-2">First</label>
  <input type="text" id="firstname-2">
  <label for="1lastname">Last</label>
  <input type="text" id="1lastname">
</fieldset>

<fieldset>
  <legend>What's your favorite soup?</legend>
  <span style="color:#990000;">This question is required</span>
  <input type="radio" name="soup" value="frenchonion" id="frenchonion-2" title="French onion"><label for="frenchonion-2">Onion</label>
  <input type="radio" name="soup" value="chicken" id="chicken-2" title="Chicken noodle"><label for="chicken-2">Chicken noodle</label>
  <input type="radio" name="soup" value="tomato" id="tomato-2" title="Tomato"><label for="tomato-2">Tomato</label>
</fieldset>
<br>

Failing elements

  • First name label for and id don’t match.
  • Last name has an invalid id.
  • “This question is required” isn’t associated with the form fields.
  • The title tag for onion soup indicates it’s “French onion.” This information isn’t available to keyboard, sighted users.

How ARIA affects form inputs

Screen readers vary on what they read and the additional information they provide by default. This is a broad summary of what’s read based on VoiceOver for Mac OSX.

You can test these with your own screen reader. If you have a OSX you can turn VoiceOver on by hitting command+F5.

Further information

Using aria-label or aria-labelledby will cause a screen reader to only read them and not the default label. If you want an input to read from multiple things like an error message, use aria-labelledby and pass it the for attribute of the label and any additional ids you want read. For example: aria-labelledby="car1 car_description car-error-message".

No ARIA

Reads just the label and not the description.

Please enter Make and Model
<label for="car_1">Car</label>
<input type="text" id="car_1"/><br/>
<span id="carmakedescription_1"><i>Please enter Make and Model</i></span>

Screen reader reads input as: Car Edit text.

With aria-label

Reads the aria-label and doesn’t read the normal label.

Please enter Make and Model
<label for="car_2">Car</label>
<input type="text" id="car_2" aria-label="Car, please enter make and model" /><br/>
<span id="carmakedescription_2"><i>Please enter Make and Model</i></span>

Screen reader reads input as: Car, please enter make and model Edit text.

With aria-labelledby pointing at carmakedescription

Reads only the aria-labelledby attribute and not the default label.

Please enter Make and Model
<label for="car_3">Car</label>
<input type="text" id="car_3" aria-labelledby="carmakedescription_3" /><br/>
<span id="carmakedescription_3"><i>Please enter Make and Model</i></span>

Screen reader reads input as: Please enter Make and Model Edit text.

With aria-labelledby pointing at carlabel carmakedescription

Reads both labels indicated by the aria-labelledby attribute.

Please enter Make and Model
<label for="car_4" id="carlabel_4">Car</label>
<input type="text" id="car_4" aria-labelledby="carlabel_4 carmakedescription_4" /><br/>
<span id="carmakedescription_4"><i>Please enter Make and Model</i></span>

Screen reader reads input as: Car Please enter Make and Model Edit text.

With aria-describedby pointing at carmakedescription

Jaws reads both the label and the description. So does VoiceOver, but there’s a slight delay before it reads the description.

Please enter Make and Model
<label for="car_5">Car</label>
<input type="text" id="car_5" aria-describedby="carmakedescription_5" /><br/>
<span id="carmakedescription_5"><i>Please enter Make and Model</i></span>

Screen reader reads input as: Car Edit text Please enter Make and Model.

Get expert answers.

Have a question about something? Our experts love to share what they know.
Drop us an email and we’ll get you connected.