Performance: Avoiding deprecated tags
MEDIUM IMPACT
Using deprecated HTML tags affects browser rendering consistency and can cause layout shifts and slower page load times.
<h1 style="text-align: center;">Welcome</h1>
<center><h1>Welcome</h1></center>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Using <center> tag | Adds extra DOM nodes | Multiple reflows due to layout shifts | Higher paint cost from unstable layout | [X] Bad |
| Using CSS text-align:center | No extra DOM nodes | Single reflow on style application | Lower paint cost with stable layout | [OK] Good |