views:

32

answers:

4

I was wondering if position:fixed is working well in Microsoft browsers, before to start to use it.

thanks

A: 

Those are fine according to quirksmode.org.

http://www.quirksmode.org/css/contents.html

Daniel A. White
A: 

fixed didn't work in IE6, but in my experience is fine since 7.

Quirksmode.org has one caveat:

In IE7, if you select "absolute" or "fixed" and then "relative", most of the layer’s content doesn’t show.

Pekka
A: 

Note that IE 7 from beta 2 upwards does support position: fixed; (if you use a document type declaration that triggers strict mode)

http://www.howtocreate.co.uk/fixedPosition.html

Thomas Clayson