Dégradé CSS
Fermé
MaxBMX17
Messages postés
67
Date d'inscription
vendredi 23 novembre 2018
Statut
Membre
Dernière intervention
20 octobre 2021
-
9 avril 2019 à 14:37
MaxBMX17 Messages postés 67 Date d'inscription vendredi 23 novembre 2018 Statut Membre Dernière intervention 20 octobre 2021 - 10 avril 2019 à 19:03
MaxBMX17 Messages postés 67 Date d'inscription vendredi 23 novembre 2018 Statut Membre Dernière intervention 20 octobre 2021 - 10 avril 2019 à 19:03
A voir également:
- Dégradé CSS
- Degrade moche - Forum Illustrator
- Flèche dégradé de couleur powerpoint ✓ - Forum Powerpoint
- Css download - Télécharger - HTML
- Pas de pas sur le dégradé ;-) - Forum The Gimp
- Enlever couleur lien css ✓ - Forum CSS
2 réponses
Hello,
<!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> html { height: 100%; } body { background-image: linear-gradient(blue, green); } </style> </head> <body> <div></div> </body> </html>
MaxBMX17
Messages postés
67
Date d'inscription
vendredi 23 novembre 2018
Statut
Membre
Dernière intervention
20 octobre 2021
1
10 avril 2019 à 19:03
10 avril 2019 à 19:03
Merci ça marche.
J'ai ça aussi :
J'ai ça aussi :
body{ background: -webkit-linear-gradient(left, red, orange, blue); background: -o-linear-gradient(right, red, orange, blue); background: -moz-linear-gradient(right, red, orange, blue); background: linear-gradient(to right, red, orange, blue); }