Performance: Font style
MEDIUM IMPACT
Font style affects how text is rendered and can impact page load speed and rendering performance due to font file size and style complexity.
body { font-style: italic; font-family: system-ui, serif; }body { font-style: italic; font-family: 'CustomFontItalic', serif; }| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Using multiple custom font styles | Low | Multiple reflows on font load | High due to font rendering | [X] Bad |
| Using system fonts with font-style | Low | Single reflow | Low | [OK] Good |