CSS3 makes it possible. Earlier jQuery plugins were needed to set a full background image, but now you can set it right using the new CSS3 function background-size: cover. You can make a fully scalable one without any trouble. I tried it and it works perfectly.
html {
background: url(background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}









Comments on this entry (no comments)
Did you like this post? You can share your opinion with us! Simply click here.