I am reading a CSS technique which is nicely documented at http://www.alistapart.com/articles/holygrail/
It shows how to create a fluid central column with two fixed width sidebars.
I am pretty clear on how the technique works but I am not sure which issue/bug this section of the CSS is attempting to fix (labelled IE6 fix).
/* IE6 Fix */ * html #left { left: 150px; /* RC width */ }
I know that the * html ensures that only IE browsers will read that CSS rule. What is the purpose of this correction for IE browsers ?