Friday, June 01, 2007

Accessibility, CSS Friendly Controls, AspNet Menu and IE6

If you are developing an accesible site with ASP.NET 2.0 you can use the CSS Friendly Controls Adapters to render the controls without tables. You can access to the project at http://www.codeplex.com/cssfriendly. The current release of the AspNet Menu does not work with IE6 and the menus are invisible. After some investigation I discover that the problem is the Menu.css in the project. I have excluded this file and it shows the menu in IE6. Finally I have discovered what was happening. There is a bug in IE6 with the next class included in the Menu.css:

ul.AspNet-Menu

{


position: relative;

}

If you delete it all will works fine. For that reason I recommend to check the CSS files included in the project and verify it if you detect some strange behavior. In our case we have model the menu in the css of the application.

Special thanks to Edu and Victor who detect it.

Related Links:

http://www.codeplex.com/cssfriendly


 

1 Comments:

At 9:25 AM, Anonymous Anonymous said...

Keep posting stuff like this i really like it

 

Post a Comment

<< Home