Solución para position:fixed en IE (Internet Explorer)
Internet Explorer simplemente no interpreta el valor fixed para la propiedad position (position :fixed;)
Hay muchas soluciones que utilizan javascript, gracias a Google, encontré esta que solo utiliza CSS:
@media screen {
* html, * html body {
overflow-y: hidden!important;
height: 100%;
margin: 0;
padding: 0;
}
* html #iefix {
height: 100%;
overflow-y: scroll;
position: relative;
}
* html div#fixme,
* html div#fixme-bottom,
* html div#fixme-middle
{
position: absolute;
}
}
Para una descripción completa de la solución, visita esta página

