Jump to content

Help With Basic Drop Down Menu


Zeradin

Recommended Posts

I'm looking at mozilla's web page and what I'm seeing is basically this:

 

<html>
<head>
   <style type="text/css">
.sub{
	visibility: hidden;
	}
   </style>
</head>
<body>
<ul>
<li>link1
	<a href="#">
	<div class="sub">
		<ul>
			<li>sub1</li>
		</ul>
	</div>
</li>
</body>
</html>
[code]

but when you roll over the header the class of the div changes to make it visible. are they using javascript for this or is there a hover technique i'm not thinking of? This seems like a basic task that'd be good to have under my belt. Thanks!

Link to comment
https://forums.phpfreaks.com/topic/182332-help-with-basic-drop-down-menu/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.