“Gradient de couleur pour le texte” Réponses codées

Texte de gradient CSS

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

Couleur de texte comme CSS de gradient

.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

Gradient linéaire sur le texte

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

Couleurs de texte dégradé

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

Texte de gradient CSS

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

Gradient de couleur pour le texte

.text {
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0,0,0,.2);
}
Determined Dragonfly

Réponses similaires à “Gradient de couleur pour le texte”

Questions similaires à “Gradient de couleur pour le texte”

Plus de réponses similaires à “Gradient de couleur pour le texte” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code