Full Background on your page ?

July 14th, 2011 § 0 comments § permalink

Hi buddies, this is another cool stuff from CSS3, something that call ‘background-size’, where you can use this to customize you website to have FULL BACKGROUND.

Is that sound good, great, amazing, this is cool man. I will show you, how to use it. what you need is only browser that compatible with CSS3:

html {
        background: url(images/bg.jpg) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
}

» Read the rest of this entry «