Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 958 Bytes

File metadata and controls

43 lines (31 loc) · 958 Bytes

htmlacademy/input-req-label

Форк: https://linthtml.vercel.app/user-guide/rules/list/input-req-label

Правило требует наличие метки для поля ввода, и позволяет указать метку в aria-label.

true

Если включён, то метки не могут быть пустыми.

Проблемными считаются следующие шаблоны:

<input type="text" value="great">

<div>
  <label for="dinosaur">Label!</label>
</div>
<section>
  <input type="text" id="romeo">
</section>

Следующие шаблоны не считаются проблемами:

<div>
  <label for="dinosaur">Label!</label>
</div>
<section>
  <input type="radio" id="dinosaur">
</section>

<label>
  Label!
  <input type="text">
</label>

<input type="text" aria-label="dinosaur">

<input type="hidden" value="dinosaur">

<input type="submit" value="submit">