IE6 border bug with vertical scroll
Wednesday, December 12th, 2007In IE6, we have seen two unusual behaviors solved by position relative.
One is known as the peekaboo bug, where elements to the right of a float div disappear and reappear. You will see this technique used in communities and mymedhelp layout files.
The new one is the border flash bug, where the page renders correctly, but the border disappears when you use the vertical scroll bar to move up and down. This was found in the community members page.
We do not have this bug on tags which uses the exact same partial…so I hypothesize that the vertical scroll bar makes IE6 hit this error path
#community_members {
overflow: hidden;
+ position: relative;
}