Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/03/2012, 17:20
Avatar de SoozaV
SoozaV
 
Fecha de Ingreso: marzo-2012
Mensajes: 2
Antigüedad: 12 años, 1 mes
Puntos: 0
Respuesta: Fondo auto-dimensionable ._.

Gracias x_aleprincess (: pero no me funcionó xD
encontré una buena solución en http://css-tricks.com (Se las recomiendo)
Para hacer el fondo auto-dimensionable, o ajustable al 100% del monitor, se pone este código al inicio del 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;
}

Funciona en:
Safari 3+
Chrome
IE 9+
Opera 10+ (Opera 9.5 supported background-size but not the keywords)
Firefox 3.6+ (Firefox 4 supports non-vendor prefixed version)

Aquí el link original con la solución, y muchas posibles soluciones:

http://css-tricks.com/perfect-full-page-background-image/