Text styling controls readability, hierarchy, and scannability. Good typography decisions reduce cognitive load more than flashy visuals.
High-impact text properties
font-size,line-height,font-weighttext-align,text-transform,letter-spacingtext-decoration,text-wrap/overflow-wrap
Pitfall
Overusing uppercase and tight letter spacing harms readability, especially for long paragraphs.
Important interview questions and answers
- Q: What is a practical line-height for body text?
A: Usually around 1.4-1.7 depending on font and size. - Q: Why avoid fixed pixel typography everywhere?
A: Relative sizing scales better with user zoom and accessibility settings. - Q: How do you prevent long URLs from breaking layout?
A: Useoverflow-wrap: anywhereor similar safe wrapping rules.
Pitfall: Check cascade order—author stylesheet loses to inline styles and !important surprises.