“texto de gradiente” Código de respuesta

texto de gradiente

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

Color de texto como CSS de gradiente

.gradient-text {
    background-color: #f3ec78;
    background-image: linear-gradient(45deg, #f3ec78, #af4261);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}
Cloudy Caiman

CSS de gradiente de color de texto

h1 {
  font-size: 72px;
  background: -webkit-linear-gradient(#f3ec78, #af4261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Nutty Nightingale

Gradiente lineal en texto

h1{  font-size: 64px;
  background-image: linear-gradient(to right, #ba81cf, #6886d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
Graceful Gull

Texto de gradiente

.gradient-text {
    display:inline-block;
    background: black;
    background: linear-gradient(135deg,red 50%,blue 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
niconius

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 “texto de gradiente”

Preguntas similares a “texto de gradiente”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código