“Texte arc-en-ciel CSS” Réponses codées

Texte arc-en-ciel avec CSS

.rainbow-text {
  background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  color: transparent;
}
DCmax1k

Texte arc-en-ciel CSS

#grad1 {
    height: 200px;
    background: red; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, orange , yellow, green, cyan, blue, violet); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, orange, yellow, green, cyan, blue, violet); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, orange, yellow, green, cyan, blue, violet); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, orange , yellow, green, cyan, blue, violet); /* Standard syntax (must be last) */
}
Adorable Alligator

Texte arc-en-ciel CSS

JEU DE RôLE
Gleaming Goldfinch

Réponses similaires à “Texte arc-en-ciel CSS”

Questions similaires à “Texte arc-en-ciel CSS”

Plus de réponses similaires à “Texte arc-en-ciel CSS” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code