giovedì 29 marzo 2012

[CSS] - Immagine Di Sfondo Css


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;
}

link utilissimo con altri modi per fare la stessa cosa:
http://css-tricks.com/perfect-full-page-background-image/