Problème de Background en CSS

Résolu
clé de 12 Messages postés 141 Date d'inscription   Statut Membre Dernière intervention   -  
clé de 12 Messages postés 141 Date d'inscription   Statut Membre Dernière intervention   -
Bonjour,

Je cherche a afficher 3 images en entete de site
mon code css serait donc
#images{
background:url("../imgs/back.jpg" );
 background-repeat:no-repeat; 
background-color:white;}
#imaged:url("../imgs/back.jpg" right top);
 background-repeat:no-repeat; 
background-color:white;}

ça, ça marche...
mais si je groupe les 2 #images (c'est possible avec CSS3)
background:url("../imgs/back.jpg" ) left top, url("../imgs/back2.jpg") right top;
 background-repeat:no-repeat; 
background-color:white;}


ça n'affiche rien....j'ai bien sur essayé avec la syntaxe background-image et nada!
Ou pêchè-je ? o)

Merci.

1 réponse

  1. clé de 12 Messages postés 141 Date d'inscription   Statut Membre Dernière intervention   1
     
    C'est résolu; je ne sais pas pourquoi mais ça marche...

    #haut {
    background:url("../imgs/back.jpg")left top,url("../imgs/back2.jpg")right top;
    background-repeat:no-repeat;
    width: 100%;
    height: 150px;
    }
    Peut être qu'une image #imaged:url("../imgs/back.jpg" right top); n'était pas affichée....On saura jamais
    Merci quand même
    0