Results 1 to 2 of 2

Thread: CSS Clean up?

  1. #1
    Join Date
    Aug 2009
    Location
    utf-8
    Posts
    205
    Thanks
    4
    Thanked 7 Times in 7 Posts

    Default CSS Clean up?

    Is there any way I can clean this up?
    Code:
    #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

  2. #2
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    background:url(header-image.jpg) no-repeat center top;
    padding:80px 0px 40px 0px;

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •