- From: Michael Burks <mburks952@worldnet.att.net>
- Date: Tue, 27 May 2003 18:58:49 -0400
- To: <w3c-wai-ig@w3.org>
I just saw this on Webreference update... I do not know if it works. I have not figured out if it is accessible either, but it may be a start. <snip> FEATURE: Pure CSS2 Drop-down Menus Here's a site that uses lists, CSS, and some JavaScript to create sleek drop-down menus: http://www.gazingus.org ...a drop-down menu using no JavaScript to turn on and off the visibility of hidden elements would be ideal. Stuart Robertson of designmeme.com, has done that: http://www.designmeme.com/articles/csspulldownmenu.shtml He uses a contextual selector, and the hover pseudo- class on a list element, like this: .menu li ul { display: none; } .menu li:hover ul { visibility: visible; display: block; position:absolute; z-index:1; width:7em; border:1px solid black; } Stuart reports that this technique works for Mozilla, Netscape 6+, Opera 7, Safari, and Konqueror. IE5 Mac and the latest versions of IE for Windows only support the hover pseudo-class on links. Maybe future versions will support the :hover pseudo-class on other elements, as per the W3C specification. Other techniques of Interest http://www.fo3nix.pwp.blueyonder.co.uk/ http://www.kalsey.com/tools/csstabs/ http://www.meyerweb.com/eric/css/edge/menus/demo.html </snip> Sincerely, Mike Burks -----Original Message----- From: w3c-wai-ig-request@w3.org [mailto:w3c-wai-ig-request@w3.org] On Behalf Of Julian Voelcker Sent: Tuesday, May 27, 2003 6:32 PM To: w3c-wai-ig@w3.org Subject: Accessible Dynamic Menus Is it possible to have accessible dynamic menus, either the 'windows' style ones that drop down from a button at the top of the screen or a vertical expanding style menu that can expand downwards to display sub items. I know that you can do some fun things now with lists and CSS, but can they constitute being accessible. I would be interested to know what you think. If it is possible, I would love some examples. Cheers, Julian Voelcker
Received on Tuesday, 27 May 2003 18:58:52 UTC