Performance: Font size and scaling
MEDIUM IMPACT
This affects how quickly text appears readable and how smoothly it scales on different devices, impacting page load and visual stability.
<p class="text-base md:text-lg lg:text-xl">Hello World</p><p class="text-[24px]">Hello World</p>| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Fixed pixel font size | Minimal | Multiple on resize | Moderate | [X] Bad |
| Responsive relative font size | Minimal | Single or none | Low | [OK] Good |