It seems the problem is with IE9 at the moment not properly rendering the sub menus whose width or height has been set to "auto", choosing instead to display it as collapsed. For the time being, the easiest and perhaps best thing to do if you're concerned about IE9beta is to make use of IE's compatibility mode doctypes to get the page in question to render uniformly across various versions of IE, such as by adding:
Code:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
to the HEAD of your page. This is explained more here.
Bookmarks