tags:

views:

52

answers:

1

I have a page with a fixed background image that is supposed to stretch to fill the entire viewport. To achieve this I have body height set to 100% and overflow to auto. Unfortunately this triggers that hoary old IE6 positioning bug where anything set to position:absolute behaves as though it is fixed.

This is part of a CMS template so it's not really feasible to fix the height of the viewport when different pages are of wildly different heights.

What other options do I have? Either different ways of stretching the background images or ways of preventing the IE6 positioning bug from triggering?

+1  A: 

Johnathan Snook has a article on the IE6 bug and its fix. I hope this solves the problem.

Taylor Satula