So, I'm fixing all of the rendering bugs that inevitably show up in IE, but I can't seem to fix the last one. In a nutshell, I have a container div with relatively positioned divs inside for content.
Within the container div, I have an absolutely positioned div running down the side of the relatively positioned divs. The absolutely positioned div has a height of 100%, which renders properly in standards-compliant browsers (the absolute div has a height of 100% of the height of the container div, so that it runs alongside all of the content divs).
Well, in IE6, the absolute div is, instead, given a height of 100% of the viewport, which leaves empty space alongside the content divs if they run below the line.
How can I get IE6 to size the absolute div to 100% of its parent block, the container div? I'd rather not resort to fixed positioning quite yet.