Missing Label and Title Check

RuleSets of AccessMonitor - the validator of web accessibility practices

Missing Label and Title Check

Description

The “Missing Label and Title Check” evaluates whether any form input elements are missing accessible labels.

Example outcome

I identified 1 form control without an associated <label> element and without the title attribute.

Impact

Fixes

To address form control elements missing a <label> and a title:

  1. Locate the form control element.
  2. Add, if possible, a <label> element and properly associate it with the <input> element using the for attribute.
  3. If you don’t want to have a visible label, use the title attribute in the <input> element, providing a meaningful title.

Resources