Answers for "what is the max font size"

CSS
2

how to set font max width in css

div {
  font-size: clamp(16px, 3vw, 32px);
}
Posted by: Guest on May-09-2021
0

min max font size

h1 {
  font-size: 2rem;
}
h1.responsive {
  font-size: max(4vw, 2em, 2rem);
}
Posted by: Guest on September-11-2021

Code answers related to "what is the max font size"

Browse Popular Code Answers by Language