Skip to content

fieldset-has-legend

Require legend in fieldset.

Severity

warning

❌ Incorrect

html
<fieldset>
  <input type="text">
</fieldset>

✅ Correct

html
<fieldset>
  <legend>Address</legend>
  <input type="text">
</fieldset>

Reference

Configuration

json
{
  "rules": {
    "fieldset-has-legend": "warning"
  }
}

Released under the MIT License.