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!