gérer 2 CSS - HTML/CSS - Programmation
Marsh Posté le 18-06-2004 à 14:22:52
Salut, question de base: j'ai 2 styles genre: .droite { width: 155px; background-color: #EDEDEE; background-attachment: fixed; background-image: url(../images/home/ombre-tc-blue.gif); background-repeat: no-repeat; background-position: right top; vertical-align: top; padding-top: 7px; } .droite-news { background-image: url(../images/home/ombre-tc-blue2.gif); } et je voudrais que "droite-news" reprenne toutes les propriétés de "droite" sauf background-image Comment l'ecrit on? merci
Marsh Posté le 18-06-2004 à 14:58:13
Au niveau CSS tu peux pas, mais tu peux déclarer plusieurs classes en même temps : class="droite droite-news"
Marsh Posté le 18-06-2004 à 15:03:52
ah ok tres bien
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 18-06-2004 à 14:22:52
Salut,
question de base:
j'ai 2 styles genre:
.droite {
width: 155px;
background-color: #EDEDEE;
background-attachment: fixed;
background-image: url(../images/home/ombre-tc-blue.gif);
background-repeat: no-repeat;
background-position: right top;
vertical-align: top;
padding-top: 7px;
}
.droite-news {
background-image: url(../images/home/ombre-tc-blue2.gif);
}
et je voudrais que "droite-news" reprenne toutes les propriétés de "droite" sauf background-image
Comment l'ecrit on?
merci