How to set min-font-size in CSS? Spread the love To set min-font-size in CSS, we use max. For instance, we write blockquote { font-size: max(1em, 12px); } to set the font-size property to the max of 1em or 12px with max. Related