Australian Made and Owned

Accessible, Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML

CSS and HTML Only Menu - Using Suckerfish SolutionWe’ve all seen dropdown / popup menu lists on websites before, and generally they’re extremely useful because they save space, but offer extra functionality. Sometimes, though they’re tricky to implement. I remember doing a image-only popout menu for the Lonsdale Views, who offer accommodation in Point Lonsdale and it was more difficult than expected - First, there was Internet Explorer’s lack of support for “:hover” and then there was Internet Explorer’s z-index issue. Now that I’ve got a blog, I thought I’d publish a how-to guide for valid, accessible semantic HTML and CSS dropdown menus… But before we get started, here’s a basic demo of the HTML and CSS dropdown list.

The HTML

After some searching around, the most appealing solution I found was the Suckerfish solution. Using the Suckerfish solution, a dropdown menu can be marked up using semantic HTML - more specifically - lists. Here’s an example:

<ul id="nav">
	<li><a href="#">Menu 1</a>
		<ul>
			<li><a href="#">Submenu 1</a></li>
			<li><a href="#">Submenu 2</a></li>
			<li><a href="#">Submenu 3</a></li>
		</ul>
	</li>

	<li><a href="#">Menu 2</a>
		<ul>
			<li><a href="#">Submenu 1</a></li>
			<li><a href="#">Submenu 2</a></li>
			<li><a href="#">Submenu 3</a></li>
		</ul>
	</li>
	<li><a href="#">Menu 3</a></li>

</ul>

CSS Part 1

As you can see, this is some very clean HTML or XHTML code which is great for search engines, accessibility and validation - not to mention code maintenance. Now, we just need to apply some CSS styles to the elements to turn this list into a dropdown menu or popup menu.

Using the Suckerfish solution, these are the styles to add:

#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	width: 10em;
}

#nav li {
	float: left;
	width: 10em;
}

CSS Part 2

That CSS gets the root menu’s visual structure up, now we need to organise the actual dropdown menus. We need to hide the drop down lists until the user hovers over the root of that particular drop down list. To do this, it seems the most accessible multi-platform solution is to move it out of sight using “left:-999em” rather than “display:none” which is known to be inaccessible. On the hover event, we move it back beneath the root using “left:auto” because “left:0″ causes a problem in Opera.

Here’s the CSS for showing and hiding the dropdown lists:

#nav li ul {
	position: absolute;
	width: 10em;
	left: -999em;
}

#nav li:hover ul {
	left: auto;
}

The Special :hover Case of Internet Explorer

Done, you now have a perfectly functioning, semantic, valid, accessible menu - right? Not quite - this still doesn’t work in Internet Explorer because it doesn’t happen to have full support for the “:hover” pseudo class but that’s Ok. Because those geniuses at HTMLDog created Suckerfish - a very small Javascript script that will solve this problem in no time, add this to your head section:

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");

	for (var i=0; i<sfEls.length; i++) {

		sfEls[i].onmouseover=function() {

			this.className+=” sfhover”;
		}

		sfEls[i].onmouseout=function() {

			this.className=this.className.replace(new RegExp(” sfhover\\b”), “”);
		}
	}
}

if (window.attachEvent) window.attachEvent(”onload”, sfHover);

What Suckerfish does is goes through all LI elements in #nav and adds the class “sfHover” onMouseOver (when the user hovers over the list item) and removes the class onMouseOut. Or in other words, it solves our problem.

There’s only one thing left to do, and that’s change a bit of the CSS that shows the dropdown menus to include the new “sfHover”:

Change:

#nav li:hover ul {
	left: auto;
}

To:

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}

And that’s it! Here’s a working demo of the valid, accessible HTML and CSS drop down menu.

Solution for Overlapping Elements or Hidden Menu

Sometimes, there’s STILL more trouble. When implementing this menu for Lonsdale Views, I came across a problem - the menus were being obstructed or hidden behind other elements! So I went ahead and used z-index to let the browser know that the menu needed to be on top. Huzzah, it works! Oh, not in Internet Explorer - what a surprise. I spent quite some time searching the internet for a solution…

Eventually I read that Internet Explorer passes z-index from parent to child, so even if you give a “4th generation” element a z-index of 1000, the z-index can’t be greater than the lowest z-order of any parent elements!

The solution to your menus being obstructed or hidden behind images, hidden behind pictures, hidden behind text, hidden behind flash, hidden behind everything:

Give each parent element of the #nav element isn’t common with the obstructing element a HIGH z-index (let’s say, 100) and give the element containing the elements obstructing your menu a LOWER z-index (let’s say 0)

For example, if this was part of your page:

<div id="container">
	<div id="topbar">
		<ul id="nav">
			... the menu code is here ...
		</ul>
	</div>

	<div id="content">
		... the element(s) that obstruct or are hiding your menu ...
	</div>
</div>

You could use this CSS to remedy your problems:

 #topbar, #nav {
	z-index:100;
}

#content {
	z-index:0;
}

Hope this has saved you some time and taught you something. If you really appreciate it, leave a comment and even go and say thanks to the crew at HTMLDog - this is all because of them!

Flash Objects Obstructing or Overlapping Menu

Sometimes, even when all of the CSS is correct, your menus might be overlapped by flash objects. For example, when you hover over, your CSS menu is hidden behind a flash object. The solution to this is actually somewhat simple and cross-browser. All that you need to do is add the transparency parameter to your embed / object code, like so:

<object type="application/x-shockwave-flash" width="100" height="100">
	<param name="wmode" value="transparent" />
	<param name="movie" value="flash.swf" />
	<embed wmode="transparent" src="flash.swf" width="100" height="100" />
</object>

Notice how “<param name=”wmode” value=”transparent” /> has been added? Also, don’t forget to add the ‘wmode=”transparent’” to the EMBED tag - that is imporant for non-Internet Explorer browsers. Now obviously, you need to change the “src” attributes and the movie value to whatever the URI of your flash file is.

Happy coding!



Did you like this post?
Email Send to a friend Add to Technorati Favorites

AddThis Social Bookmark Button
AddThis Feed Button

Leave a comment

13 Comments

  1. PlugIM.com

    Accessible%2C Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML…

    We’ve all seen dropdown / popup menu lists on websites before, and generally they’re extremely useful because they save space, but offer extra functionality. Sometimes, though they’re tricky to implement - especially valid ones that are accessibl…

    December 28, 2007 @ 10:49 pm

  2. Petr Kabát

    You´ve got a mistake in javascript. In regexp must be \\b not only \b.

    January 5, 2008 @ 12:10 am

  3. Tim

    @Petr Kabát:
    Thanks, I edited it. I assume Wordpress butchered it (as it sometimes does).

    January 5, 2008 @ 12:18 am

  4. Unhappy with IE

    This “solution” failed as expected

    January 29, 2008 @ 5:00 pm

  5. Esté Visser

    Thanks for the help! Got my swf object to go behind my ccs dropdown in Explorer! I hate IE!!! ;0)

    March 10, 2008 @ 7:59 pm

  6. Melissa

    I z-indexed the crap out of my menu. It works! It works! (Even in IE.) You are my hero.

    April 30, 2008 @ 8:56 am

  7. Tim

    @ Unhappy with IE
    *You* failed, as expected.

    April 30, 2008 @ 5:35 pm

  8. shadeydave

    Hi guys,

    I tried this as well, and it didn’t work. Although I love the use of the -999em thing to keep the page accessible. Good stuff.

    Anyway… IE7 renders flash with the javascript so don’t forget to put your transparency code in here as well. see below:

    AC_FL_RunContent( ‘codebase’,'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0′,’width’,'687′,’height’,'460′,’src’,'gallery’,'quality’,'high’,'plugins page’,'http://www.macromedia.com/go/getflashplayer’,'movie’,'gallery’ ,’wmode’,'transparent’ ); //end AC code

    This is completely outside of your flash parameters and embed object tags. So remember code kiddies, you need to reference the wmode 3 times in order to get it to work! Craptastic!

    June 25, 2008 @ 11:23 pm

  9. shadeydave

    Man wordpress screwed up my code one sec…


    AC_FL_RunContent( ‘codebase’,'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0′,’width’,'687′,’heigh t’,'460′,’src’,'gallery’,'quality’,'high’,'plugins page’,'http://www.macromedia.com/go/getflashplayer’,'movie’,'gallery’ ,’wmode’,'transparent’ ); //end AC code

    June 25, 2008 @ 11:24 pm

  10. Tim

    Thanks for that shadydave :) I’m SURE that will be helpful to some of the visitors.

    June 30, 2008 @ 7:37 pm

  11. chris woolard

    Thanks for the menu code. It works great. but I haven’t been able to solve the ie hover issue. I tried to use the java code you gave me…I did it inline and I also tried to reference an external .js document.

    But I’m not very java savvy. Can you help me please!

    July 16, 2008 @ 7:28 am

  12. nick

    SPTa7F hi! hice site!

    July 29, 2008 @ 2:17 pm

  13. errr

    Whichever way you look at it … the suckerfish example, and thus this copy of it, is not accessible. If scripting is disabled, it will not work in IE … which makes it usable in about 20% of browsers and devices which have scripting disabled.

    August 18, 2008 @ 11:17 am

RSS feed for comments on this post. TrackBack URL

wolfgang daiss | duramed study | patricia benzinger | ian thomson personal anecdotes | patricia barzyk | fluoroquinolone intoxication | sergei kupper | duran duran decadance remix | wanda smolka | jennifer jacobs des moines register | ets dallas tx | ets3000 | redz ion gun reviews | ian thorpe hgh | sterling medicare advantage 2008 | windows xp ftps utility | sergei lavrov jewish | wanda sykes nappy comment | rodman mortgage broker | miss weio | fluoroquinolone detoxification | redzee news | sergei brin jew | villages of eastlake atlanta ga | miss world 1984 carole laure | rodmans chest tattoos | alopecia sibling alopecia study | restaurants le chevillard | stunner vivid | wolfgang cuje | crazy freddy financing qualifications | sergei di jonge | restaurants lie exit 62 | rodnew white stretched canvas prints | miss zmax | fluoropolymer vulcanization | sergei brim | windows xp powerdown frezee | ian sommerhalder | sergei bodrov | ree and audio stories | patricia benefiel | sterling mccall honda of kingwood | redzone escort | redzone isp | fluoroscopy in orange county calif | rodney allen rippey photo | rodney allan rippy | sterling nurse charm | ian seemann | villages at aviano | restaurants milwaukee burleigh burgers | sterling optical color contact | patricia becerril capitan | villagerealty obx | ian thorneycroft | crazy desines | fluoroscopy distance requirements | wolfgang dase | stun master stun batons | villages of bloomingdales | sterling onyx museum earrings | rodney akens | patricia balasco barr | sterling mine imperial metals | novanatal | wolfgang dantschke | duran duran come undone edit | wanda schulze | etrust service hung on starting | reea title | windows xp lagging bad | windows xp peernet folder | alora from jedi academy | sterling optical at boulevard mall | patricia b butto | windows xp mmi | patricia barkley moss prints | novar fan controller | jennifer jentsch | jennifer jandak | wanda twistys | ian thornley 2005 | ets edinburg seminary | crazy croc's bar rio rancho | wanda wojtowicz | stunna shades by the federation | windows xp professional .00 | ets emco | wolfgang cygan | wolfgang damerius | sergei markarov hockey | ian taylor peebles scotland | novanet answer | redz pepper barrel | crazy daisy love dool | wanda sykes bio | fluorometric imaging plate reader | ets praxis math | restaurants marblehead ma | jennifer jason leih | crazy crew acrobat | miss wobbly jake barton victoria | restaurants lake county sunday brunches | sterling masonry construction everett wa | wanda rosatti | novanet ace schooling | jennifer jewiss universiy vermont | rodney allen breckenridge | fluoroseal | wolfgang danielowski | duran coat of arms | jennifer jennicide leigh in playboy | wanda thot | missa criolla mp3 | stun lyrics | alopecia zinc selenium | sterling neo angle shower door | miss you nagareboshi | duran duran name origin | sergei durdin | crazy for you leonardtown maryland | restaurants mclean virginia brunch | sergent bluff iowa | windows xp pm3 | wolfgang danzinger | rodney adkins bukaroo | sterling mcall | sterling mk 4 instruction manual | wanda sex timmy | jennifer jason leigh masturbate | ets executive transportation services | ree ecards | wanda rundle | wanda specht | ree soesbee | windows xp pci error 1806 | sterling models american scout | duramold | fluoropolymer pvdf 3 step coating | ets watchers fine matter beings | patricia beneke | fluorosilicone o-ring | wolfgang cs r s | sterling one realty miami | stungun schematic | novare group holdings | stunde null zero hour | rodizio machines | sterling neo angle shower kit | missa dali monet | restaurants mesa austin tx | windows xp ppro | restaurants malbis | novara transfer reivew | fluorspar conference and exhibition | miss you remix lu conte | restaurants langley moxie's | jennifer janout | sterling motor 5hp | ian symondson | wolfgang d wel | jennifer jennings single | crazy fit massage instruction manual | miss wood spanking | villages of aquia stafford va | ets lindgren cedar park tx | duran duran hit single ri | sergei pavlovich diaghilev | restaurants lake okoboji | ian shaddix | redzone pronounced | villages at woodmen colorado springs | ian thornley official site | novar extension wind | stunnel windows service | miss you jake craigslist dallas | wolfgang danzl | sterling markham liquor | windows xp powers down erratically | restaurants lake wallenpaupack | sergeantsville new jersey | ian thorpe official | villager lodge mo | patricia baracaldo | stun gun wholesale | wolfgang d tze | duran duran chauffeur video | ets 250 wrist strap tester | wolfgang damerau | rodney akers quarter horse mississippi | sterling nursing home temecula california | sergej janzen | ree funny jokes | wolfgang creutzburg | novare engineers inc | ian taylor 13 mostyn close | restaurants medway ma | wanda transient | novar extension wind complete 2007 | sergej borissov | duran and reed jacksonville | jennifer jacquot | restaurants marana az | fluoroscopy qc | wanda shali | ian thorpe nickname | windows xp print spooler locked | ree big tit movies | wolfgang dahlenburg | alopecia lyme disease | patricia barnes ombuds | jennifer jarman victoria | patricia bailey jones mtm | ets linger | rodman in frisco tx | jennifer johnson metlife | patricia bassett norwalk | sterling nursery carpenteria ca | alopecia reata | villager owners manual | rodney allen ripley burger king | patricia barriga tinoco | wanda sykes prisoner | restaurants laplace louisiana | ian sidaway artist | wanda urena | crazy cupid rapidshare | patricia barros nude | restaurants maplewood minnesota | stun guns for small livestock | stun guns in gergia | ree piss personals | wolfgang creutz | sterling model 302 | sergei trofim | villages near esteli | jennifer jepsen | miss yips restaurant | villages near bendigo | redzebra global | wolfgang cziesla | miss witherspoon school hanging stories | wolfgang croes | villager liz clairborne company | restaurants mansfield derbyshire | restaurants lichfield uk | sergej regner | villages at whiting nj | jennifer joanne sykes virginia | rodney adkins fanclub | windows xp install uc-232a | etrust spyware encyclopedia limewire | alopecia stress related theories | restaurants lower sloane street london | windows xp kb908531 source files | sterling ny ren fest | villager woodlands texas | wolfgang cunz | jennifer jahn charleston south carolina | rodney adkins going through hell | miss young granada hills 1971 | novapress | sterling molby | sterling oklahoma zip code | fluoxetina y bupropion | etscheid | wanda rippa | crazy english horse indianer | sergei fedorov family | sergei prokofiev sofia | ets payphones | sterling model aircraft | miss-teeq | villager sash dress sandals | ian thomas alaska anchorage | duran duran femme fatale | ets edmonton bus | duran duran come undone video | novara and italian name | jennifer james penthouse 1985 | crazy for low thyroid | alosio ryan hockey | rodmaster | miss vidalia onion festival | duran duran the reflet | sterling montessori cary | ian stewart bridalwear | alorica tulsa | stungun bean bag | jennifer jason leigh filmograhpy | wolfgang danyluk | novant health retirement | ian talyor | patricia berney wood | novare events atlanta | reeboc shoes | novara bicycle review | sterling moss impotence | miss wisconsin qualifiers | alopurinol drug | ets and business skills assessment | duran duran presale code | ian scroggie | alorica philippines | novanet error | novare event | sergej lemke | wanda toscanini horowitz | stundent artwork | sergei grigorievich kozlov | stun gun wav | rodney adkins bill maher leno | miss wett shirt | wanda sanseri | ian smith raf | sergent copyright pagesjaunes | wolfgang d nzl | miss virginia beach va pageant | restaurants lochinver | sergei esenin poems | sergei bruguera | wolfgang conzen | crazy dumper sex over 60 | wanda sykes gossip | ets essay range finders | wolfgang corvinus | sergei federov wife | crazy curly patterns | alopecian | ets express bahamas | wanda vaverka | wolfgang d hre | novara trionfo 2005 | stuned scholarship | sterling neo angle economy | sergent avery johnson | miss ybor | wolfgang coblenzer | wanda s hagerman | windows xp home mvl | stunnel speakfreely | jennifer jason leigh tits | villager outfit | miss yvonne pee-wee | ree greeting cards | jennifer jenkins seattle wa | windows xp key remap | crazy dream ft loon mp3 | patricia bates at cedarville college | novara bonanza review | villager restaurant bristol | crazy flog popcorn | ets praxis exam results | windows xp motorola 6412 | wanda vick bluegrass girl | patricia aulgur | redz paintball equipment | stunnel error on xp | rodizio machine | sterling municipal libary | wolfgang cosack | alorica topeka | ian shipton cars | fluorophenyl propan-2-amine | duran duran nion | patricia battie | jennifer jedamski | novar 4020 | crazy fit massage review critics | duran excavating | patricia beatty elementary school dedication | sergei fedorov and anna kournikova | sergeantsville market | crazy creek beach chair walgreens | jennifer januszewski | ree hard dive booste | fluoroquinolones new mrsa | stunners club london | fluorspar pronounced | jennifer johnson batavia ohio | villager premier florida | jennifer jimmy mackinac | ian sidney cotter | novar wiring | wanda sit winnipeg | duran durans | restaurants minonk | wanda wechsler | stunnas jagged edge mp3 | wanda sykes nude naked fakes | duran golf club viera florida | windows xp mps table support | windows xp over 100bt networks | duramed pharmaceuticals | stunded | fluoroquinolone flouride fluconazole | jennifer jackson and maine news | miss yvonne pee wee herman | fluostar optima software | crazy eleven patch quilt | rodizio manhattan | patricia barela | villages of cinnamon creek | villages at hamburg farms website | ian snell no hitter | alopecia of the eyebrow | windows xp multihome | sergelen | wanda rovira | wolfgang d bler | restaurants midleton ireland | alopecia universalis stress | ets on olds achieva | fluorphlogopite | sergei camo | fluorometholone cream | stunna glass lyrics | sterling mccall honda kingwood | novapak | restaurants mexico city near chapultepec | reebock backpack | wanda starling | sergei prokofiev's wife | rodizio grill colorado | crazy freddie motorsport | wanda sneed vanderbilt | villages in the berkshires | stun-gun zapping after affects | fluoroscope dangers | jennifer jason leight | ian terence newson | windows xp key retrieval | sergej lamp | alopecia mouse model | sergei prokofiev childhood | fluorometer rhodamine standard curve | windows xp ms-dtc service | patricia bailey newtown ct | windows xp professional nfr | crazy fool s newsround | ets tavern australia | patricia baker flagstaff | alore shirts | patricia ashcraft caifornia | fluoroquinolones ppt | duramaxx diesel consumer ratings | wolfgang d rje | patricia blatz | rodman rockefeller divorce | wanda voll | stun isa | crazy firecracker prank | villager inn hotel | wolfgang cyganek | fluorocarbon recovery equipment | sterling mccall rosenberg tx | fluoxetine alteration perception of wrong | alosa guitar | wolfgang d lme | stunade naked | windows xp h23 | redzone capital fund | miss whangamata new zealand | jennifer johnson lexington mo | stunin like my daddy | ree dirty videos | alor gajah map | sterling mint julep cup | alopecia remedys | windows xp pro slk | stunna glasses ringtone | crazy daisey | alot of cameltoe | patricia biegler | ian schrager ny | etsako benin | novar password | wanda sykes oops | duran construction new orleans | sergei grinkova | missal company mn | villages lady lake florid | crazy egor's | ets thailand gre | etsc new | rodizio denver | etrust spyware encyclopedia kazaa | patricia arquette lost highway photos | wanda tech umbrella repair | ian shapland | wolfgang clau ing | sterling oaks nursing | patricia binger | miss world aishwarya rai 1994 | restaurants livonia area | stun like my dady | alopecia totalis blog wig | wolfgang dammers | fluosilicic acid uses | wanda wint nude | ets silencer | windows xp pro makeboot | novamoxin alcohol | sergei belikov | wolfgang conell | rodizio north providence | crazy fox home buisness review | duramx 4.5 liter | sterling medical killeen texas | fluorosilicone acrylate | crazy crafted ammy | windows xp itunes 7 1417 | fluoroprotein foam | ree homeschool music lessons | windows xp free spider solitaire | ian thornley beautiful | stun master 800,000 volt | ian thorpe in his swimsuit | jennifer jean hansen iowa | ets inventory of learner persistence | crazy dumper chearleader sex | novanet hacking | alopecia pantyhose | sergei luv | fluorogreen | novare group atlanta ga | rodizio grill recipes | duran duran ft timberland | fluothane | windows xp olp serial number | rodnaya street | wolfgang daems | villager wallet | reeba thats | villager premier orlando | ian strachan and sean mcguigan | villager mercury header pipe | patricia benavides westside story | villages liberte brossard | restaurants melbourne florida tapas | windows xp pagefile size recommendations | jennifer jimenez and brian cruz | windows xp pro mui download | jennifer jacot | stungun nipple | rodizo | miss whatcom county program | restaurants menasha wi | duran duran nite runner | sergei samsonov rw | jennifer jennings durango co | fluorochem limited | fluoxetine aggression | novara bikes | novant health careers | crazy fly proline 145 cheap | ian shirley cardington | novara carema pro | novar pronounced | ian sidles | alot a paving utah | rodler klaus | jennifer jason lee nude | windows xp home slovenian pack | restaurants langs de vecht nl | windows xp home asennus | alopecia universalis onset | alopecia fluconazole | windows xp openswan ipsec tunnel | novar sem | villages of avignion florida | fluoroperm | villages at colleyville | rodman bennett brown funeral home | missa sica | stunde der warheit | stun gun sourcing | ian smith and cartersville | restaurants metairie la | ree online music courses | redzee | wanda veit | restaurants lynnwood critics favorites | miss xtreame | ets davenport tele | crazy django yahoo | restaurants michigan and randolph | windows xp kb936929 | missa o quam gloriosum | miss zentralschweiz | duran celia alejandra | stunner glasses mp3 | fluoxetine accumulation | ree sheer panties galleries | duramex dog pain pills | wolfgang dachsel | villages at almand creek | restaurants los colinas texas | jennifer jason leigh risque