28173 sujets

CSS et mise en forme, CSS3

Bonjour,

y a til une possibilité d'optimiser un peu ce code :


width:143px;
height:400px;
padding : 2px 0;
background-color:#7CA588;
background-image:url(img/fondSidebar.gif);
background-position:bottom;
background-repeat:no-repeat;


Je le trouve un peu trop fouilli à savoir que dans ma CSS j'ai plusieurs fois ce genre de code.

Merci.
Bonjour Fileip,

Tu peux simplifier par :
width:143px;
height:400px;
padding : 2px 0;
background: url(img/fondSidebar.gif) no-repeat bottom;
background-color:#7CA588;
Salut

On faire ça tant qu'on y est :


width:143px;

height:400px;

padding : 2px 0;

background: #7CA588 url(img/fondSidebar.gif) no-repeat bottom;