Feste Positionierung in IE 6

Avatar of Chris Coyier
Chris Coyier on
* { margin:0; padding:0; }
html, body {
   height: 100%;
}
body #fixedElement {
   position:fixed !important;
   position: absolute; /*ie6 and above*/
   top: 0;
   right: 0;
}
#page-wrap {
    width: 600px;
    margin: 0 auto; 
    font: 16px/2 Georgia, Serif;
}

Die 100% Höhe auf Body und HTML ist für den Fall, dass du eine feste Positionierung am unteren Rand des Browserfensters vornehmen möchtest.