Answers for "responsive website typography font"

CSS
0

Typography Responsiveness

@media (min-width: 30em) {
  html {
    font-size: 125%;
  }
}

@media (min-width: 40em) {
  html {
    font-size: 150%;
  }
}

@media (min-width: 50em) {
  html {
    font-size: 175%;
  }
}

@media (min-width: 60em) {
  html {
    font-size: 200%;
  }
}
Posted by: Guest on January-21-2022

Browse Popular Code Answers by Language