Performance: Self-closing tags
LOW IMPACT
Self-closing tags affect the parsing speed and DOM construction during page load.
<img src="image.jpg" /> <br /> <input type="text" />
<img src="image.jpg"> <br> <input type="text">
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Incorrect closing tags on void elements | Extra parsing and DOM fixes | Possible reflows if DOM is corrected | Minimal | [X] Bad |
| Proper self-closing tags for void elements | Straightforward DOM creation | No extra reflows | Minimal | [OK] Good |