I've looked at half a dozen CSS optimisers out there. What I'm looking for is one that will turn:
background-image: url(../images/background.png);
background-repeat: repeat-x;
background-color: #c0c0c0;
Into the single background property:
background: #c0c0c0 url(../images/background.png) repeat-x;
How can I do this? Do I have to do it by hand?