Ejemplo 1: centro de portada de imagen de fondo 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;
}
Ejemplo 2: CSS hace que la imagen llene todo el fondo
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;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)