A previous question addressing a div positioning issue in Internet Explorer received multiple suggestions advising the use of conditional commenting
Why is this relatively positioned div displaying differently in IE?
How does one implement conditional comments?
For example:
<div class="normal"></div>
<!--[if IE 6]>
<div class="IE6"></div>
<![endif]-->
If it is Internet Explorer 6, will this override the first div with class="normal"? If not, there would be two divs for Explorer 6...
What may be causing this positioning problem?
I even tried creating a new HTML document with a simple "hello world" text inside a div with relative position, and in IE it behaves differently, being about 3px further down than in other browsers...
Thank you