Log in

View Full Version : CSS Clean up?



FrickenTrevor
11-05-2009, 01:24 AM
Is there any way I can clean this up?


#head {
background-image: url(header-image.jpg);
background-repeat: no-repeat;
background-position: center top;
padding-top: 80px;
padding-bottom:40px;
}


Basically, I want to compress all this:

background-image
background-repeat
background-position

into one or two lines.
Anyway to make it small. Thanks :)

bluewalrus
11-05-2009, 02:34 AM
background:url(header-image.jpg) no-repeat center top;
padding:80px 0px 40px 0px;