“cómo hacer fuentes respnsive” Código de respuesta

cómo hacer fuentes respnsive

h1 {
  font-size: clamp(16px, 5vw, 34px);
}
Tanishq Vyas

Texto receptivo CSS

/* Uses vh and vm with calc */
@media screen and (min-width: 25em){
  html { font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) ); }
}

/* Safari <8 and IE <11 */
@media screen and (min-width: 25em){
  html { font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) ); }
}

@media screen and (min-width: 50em){
html { font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) ); }
}
deadlymuffin

Respuestas similares a “cómo hacer fuentes respnsive”

Preguntas similares a “cómo hacer fuentes respnsive”

Más respuestas relacionadas con “cómo hacer fuentes respnsive” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código