Bonjour, je cherche à insérer un dégradé mais dreamweaver voit des erreurs à chaque ligne, merci pour votre aide,
le code :
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#63b6db+0, 309dcf+100&1+0,0.65+16 */
background: -moz-linear-gradient(top, rgba(99,182,219,1) 0%, rgba(91,178,217,0.65) 16%, rgba(48,157,207,0.65) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(99,182,219,1) 0%,rgba(91,178,217,0.65) 16%,rgba(48,157,207,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(99,182,219,1) 0%,rgba(91,178,217,0.65) 16%,rgba(48,157,207,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#63b6db', endColorstr='#a6309dcf',GradientType=0 ); /* IE6-9 */
Administrateur
Hello,

Oh mon dieu que ce code est vieux ! C'est le problème avec les outils qui ne se mettent pas à jour.

Dreamweaver a parfaitement raison de t'avertir : certaines parties (filter) ne sont pas standard, et d'autres sont obsolètes depuis des années.

Tu peux tout supprimer sauf cette déclaration :
background: linear-gradient(to bottom, rgba(99,182,219,1) 0%,rgba(91,178,217,0.65) 16%,rgba(48,157,207,0.65) 100%);

Modifié par Raphael (15 May 2019 - 08:55)
Meilleure solution
Hello, j'ai inséré dans css la commande suivante :
background:linear-gradient(to bottom, rgba(99,182,219,1) 0%,rgba(91,178,217,0.65) 16%,rgba(48,157,207,0.65) 100%);
et dreamweaver me fait une erreur et empêche son affichage, que fais je de mal ?
Merci d'avance!