Home / Blog / Tips / Fluid Typography with CSS clamp()
Use clamp() for fluid font sizing that adapts to screen width:
font-size: clamp(50px, 8vw, 100px);
This sets a minimum of 50px, scales with viewport width (8vw), and caps at 100px — ideal for responsive headlines.