Home / CSS Tips Generated By ChatGPT / Responsive Typography with min() and max() in CSS Use min() and max() functions to clamp font sizes for scalability and readability across devices. Source Code body { font-size: min(max(1rem, 2vw), 1.5rem); }