I’ve been doing some web design work and the client uses IE6. There is a bug where at times certain chunks of text don’t appear on the screen, although they are actually present in the html markup.
I had seen this before, but couldn’t remember the fix, so I googled and came across some interesting reading. See here and here.
The fix that I put into place is listed here, under the “But what about IE?” section.
I inserted the following code in my css file and the problem was fixed.
/* Hides from IE-mac \*/
* html .container {height: 1%;}
/* End hide from IE-mac */
I also added the following code for the “Guillotine-Bug”.
.container:after {
content: “.”;
display: block;
height: 0;
clear: both;
visibility: hidden;
}