Performance: Label association
MEDIUM IMPACT
Label association affects user interaction speed and accessibility, impacting input responsiveness and visual stability.
<label for="name">Name</label><input type="text" id="name">
<label>Name</label><input type="text" id="name">
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Label without 'for' attribute | Minimal | 0 | 0 | [!OK] |
| Label with 'for' attribute linked to input | Minimal | 0 | 0 | [OK] Good |