CSS Position Fixed for IE6

21:43

How do you get position:fixed css working in Internet Explorer 6?

The trick is to use an Internet Explorer CSS expression. You can’t simply put the logic in there directly or it’ll cache the result and not update. The simplest fix is to wrap your logic in eval.

More