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 :)
#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 :)