Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/06/2011, 21:42
rapuig
 
Fecha de Ingreso: junio-2011
Mensajes: 478
Antigüedad: 12 años, 10 meses
Puntos: 13
Pregunta background-attachment: fixed en IE

Hola! Queria saber como hago mi background fixed para IE para las versiones menores que la 9.

Mi codigo: CSS


Código:
html, body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #878787;
	background-repeat: no-repeat;
	background-attachment: fixed !important;
	background-image: url(../img/background.jpg);
	-webkit-background-size:cover;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
    -o-background-size: cover;
	height: 100%;
	}

Gracias!