Use shortcuts

Questo
codice:
div#dacolorare{
	background-image:url(immagine.gif);
	background-repeat:repeat-x;
	background-position: bottom;
        background-color: #99cc00;
}
può anche essere scritto così
codice:
div#dacolorare{
	background: #9c0 url(immagine.gif) repeat-x bottom;
}