RuleSets of AccessMonitor - the validator of web accessibility practices
The “Missing Fieldset Description Check” evaluates whether there is any <fieldset>
element without a description (i.e., a <legend>
element within).
I found 1 <fieldset>
element without any description.
<legend>
to provide context for grouped form elements. Without it, the user may not understand the purpose of the fields.To address <fieldset>
elements missing description:
<fieldset>
element without a description.<legend>
element that describes the group’s purpose inside the fieldset.