IE8 Beta 2 and Asp.net rendering issues

2
Digg me

IE8 Beta 2 and Asp.net Menu Control rendering issues

If your code works on IE 6,7 and Firefox even on chrome it may not work on IE8. The reason being Microsoft suddenly woke up and started to be strict with design and style standards.

For styles not working the way it should or DHTML not appearing on screen the problem is inline styling. IE 8 doesnt parse the code if its inline styling.

So the simple fix is move all the style=” “  to stylesheet class

This is better way to clean your code too.

7 thoughts on “IE8 Beta 2 and Asp.net rendering issues

  1. I changed all references in the Menu Control from style=”\" to stylesheet classes. Dynamic elements are still blank! Only IE8 beta 2 exhibits this problem. All other browsers work fine. What am I missing?

  2. hi T Weidner,

    You have to set the z-index property to a higher value like 999

    /*dynamicMenuStyle*/
    .dms
    {
    z-index:99;
    color: Black;
    }

  3. i have included the code

    z-index:999;

    but still its not working,

    is there any solution please forward me

    thank you

Leave a Reply

Your email address will not be published. Required fields are marked *

HTML tags are not allowed.