Rafael wrote: > I have this menu[1], and although it works as expected in most > browsers (IE 6 wasn't fully considered), I have two issues with which > I'd like to ask you for help: > a) I was trying to add keyboard support (without JS) but I can't find a > way to keep the sub-menus open so the user can 'tab' through their > options (I can show them, but they're not "selectable" by 'tab').
Once the parent-element loses focus, its children are out of reach and the chain is disrupted. You must hold the focus - or rather hold the children within visible range so they can be reached. Methods described here... <http://www.tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp> ...work with keyboard. > b) why, just why doesn't "tab" seem to work on either Opera or Safari? > (just Fx & IE). Opera use the letters "A" and "Q" for tabbing forward and backwards through links. > [1] http://dev.rsalazar.name/css.d/menu.html regards Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
