CSS Viewport Units
To solve that issue, we need to give the title a minimum font size that it can’t go below it. CSS calc() to the rescue!
.title {
font-size: calc(14px + 2vw);
}
The calc() CSS function will have a base 14px value, and it will add 2vw to it. With that in hand, the font-size value won’t become too small.
March 26, 2020 at 9:58:54 AM EDT
*
FILLER