“Gradiente de texto CSS3” Código de respuesta

texto de gradiente de CSS

h1 {
  font-size: 72px;
  background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Ugliest Unicorn

Gradiente de texto CSS3

h1 {
  font-size: 72px;
  background-image: linear-gradient(
    110deg,
    #463f64,
    #463f64,
    #e2285c
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Misty Mouse

texto de gradiente

selector h2 {
    background-image: linear-gradient(to right,#463f64,#463f64, #e2285c, #e2285c);
    -webkit-background-clip: text;
    display: inline-block;
    padding: 14px;
    -webkit-text-fill-color: #00000000;
    font-family: 'Stay Out Regular';
}


Busy Butterfly

Respuestas similares a “Gradiente de texto CSS3”

Preguntas similares a “Gradiente de texto CSS3”

Más respuestas relacionadas con “Gradiente de texto CSS3” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código