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.

Leave a Reply

Your email address will not be published. Required fields are marked *