Performance: Visibility property
MEDIUM IMPACT
Controls whether an element is visible or hidden without removing it from the layout, affecting paint and compositing.
element.style.visibility = 'hidden';
element.style.display = 'none';
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| visibility:hidden | No DOM changes | 0 reflows | Paints hidden element (medium cost) | [OK] |
| display:none | No DOM changes | 1 reflow per element hidden | No paint for hidden element | [OK] Good |