What IE8 is doing is correct (by design), in the sense that in Standards mode IE8 is following the standards. By default the (element).currentStyle.zIndex returns "auto" when the zindex has not been set. The ASP.NET menu controls just assumes a different value. :)
Override the zindex property. Like such:
CSS
<style type="text/css">
.IE8MenuFix
{
z-index: 100;
}
</style>
HTML
<DynamicMenuStyle CssClass="IE8MenuFix" />
0 comments:
Post a Comment