ecco qui. su IE<7 funziona con un commento condizionale
codice:
<style type="text/css">
body .fixed { position: fixed; }
</style>
<!--[if lt IE 7]>
<style type="text/css">
html.fixed {
height : 100%;
width : 100%;
overflow : hidden;
}
html.fixed body.fixed {
height : 100%;
width : 100%;
overflow : auto;
}
html.fixed body.fixed .fixed { position : absolute;}
</style>
<![endif]-->
devi assegnare class="fixed" all'elemento html, al body e all'elemento div (o altro che vuoi rendere fixed.
Ma usalo con molta attenzione: può provocare la scomparsa delle barre di scorrimento quando fai resize della finestra, quindi fai un pò di test se si comporta bene con la tua pagina
Keyword: posizionamento position fixed explorer crossbrowser browser