Bonjour.
Est-il possible de mettre en fond de bloc une dégradé + image ? Toutes mes tentatives ont échoué, mais bien sûr, cela ne prouve pas que cela soit impossible !
En fait j’ai du code CSS isse d’Ultimate CSS Gradient Generator :
J’ai donc essayé de rajouter en dessous :
de rajouter l’url à l’intérieur de chaque background :
de faire une seule déclaration de background :
Donc là je sèche.
Il y a bien sûr la solution de rajouter un bloc interne pour l’image, mais là, c’est de la « triche » !
Modifié par Derwoed (21 Oct 2012 - 19:21)
Est-il possible de mettre en fond de bloc une dégradé + image ? Toutes mes tentatives ont échoué, mais bien sûr, cela ne prouve pas que cela soit impossible !
En fait j’ai du code CSS isse d’Ultimate CSS Gradient Generator :
background: #d11d28; /* Old browsers */
background: -moz-linear-gradient(top, #ff0000 0%, #d11d28 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(100%,#d11d28)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ff0000 0%,#d11d28 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ff0000 0%,#d11d28 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ff0000 0%,#d11d28 100%); /* IE10+ */
background: linear-gradient(to bottom, #ff0000 0%,#d11d28 100%); /* W3C */
J’ai donc essayé de rajouter en dessous :
background-image: url(../images/monImage.png);
de rajouter l’url à l’intérieur de chaque background :
background: url(../images/bg-bloc-urgences.png) linear-gradient(to bottom, #ff0000 0%,#d11d28 100%); /* W3C */
de faire une seule déclaration de background :
background: #d11d28, /* Old browsers */
-moz-linear-gradient(top, #ff0000 0%, #d11d28 100%), /* FF3.6+ */
-webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(100%,#d11d28)) /* Chrome,Safari4+ */
-webkit-linear-gradient(top, #ff0000 0%,#d11d28 100%) /* Chrome10+,Safari5.1+ */
-o-linear-gradient(top, #ff0000 0%,#d11d28 100%) /* Opera 11.10+ */
-ms-linear-gradient(top, #ff0000 0%,#d11d28 100%) /* IE10+ */
linear-gradient(to bottom, #ff0000 0%,#d11d28 100%), /* W3C */
url(../images/monImage.png);
Donc là je sèche.
Il y a bien sûr la solution de rajouter un bloc interne pour l’image, mais là, c’est de la « triche » !
Modifié par Derwoed (21 Oct 2012 - 19:21)