Inside your head tags put a Conditional comment
<!--[IF IE 6]>
<style="text/css">
PUT THE CODE THAT MAKES IE6 appear nice here
</style>
<![endif]-->
and in your CSS file put the good code that makes all standard modern
browsers behave.
Also IE6 has a problem with margins set on float elements
for ex:
div1 { float: left; margin:10} will be div1 {float: left; margin:20px} in
IE6, to fix this common proboem add a display: inline to all floated
elements with margins
div { float:left margin: 10px dispplay: inline}
this will fix some other issues also, standard complient browsers do not
take the display: inline because all float elements are block level elements
and in ie6 the margins will be set properly.
Hope it will help you
Best Regards
On Thu, Oct 2, 2008 at 7:32 PM, Nadine Misiaszek <[EMAIL PROTECTED]>wrote:
> I find a mysterious offset of 10 px in my 3-column layout, my first
> such layout.
>
> I have validated the HTML and the CSS. I used Firebug for another
> perspective. My column 1 header 2 has a mysterious offset of 10. I
> do not know where it comes from.
>
> http://www-rohan.sdsu.edu/~nmisiasz/test/page1.html<http://www-rohan.sdsu.edu/%7Enmisiasz/test/page1.html>
>
> The header tags of column 1 and column 2 line up in IE 6 but not in
> Firefox 3. I tried some negative numbers for margin-top. Then
> things work in FF but not in IE.
>
> Thanks for any help you may give.
>
>
> Nadine
>
> ______________________________________________________________________
> css-discuss [EMAIL PROTECTED]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> List policies -- http://css-discuss.org/policies.html
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
>
--
--
-------------------
Alexandru Dinulescu
Web Developer
(X)HTML/CSS Specialist
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/