up vote 1 down vote favorite
share [g+] share [fb]

I have a menu that will be automatically created in an asp.net page. I'm trying to use a pure CSS cross browser menu but how can i set it so that each subsequent child is autohiden/shown w/o having to define the style for each level of the menu.

Is this the only way to accomplish this with css?

Essentially im looking for a way to use css to show/hide the child menu items w/o having to define the style for every level - especially since i dont know how many levels there will be.

link|improve this question

73% accept rate
feedback

2 Answers

up vote 1 down vote accepted

you should be able to do it by only specifying down to the second level

<html>
<head>
<style>
.mnusub li ul{ display:none; }
.mnusub li:hover > ul{ display: block; }
</style>
</head>
<body>
<ul class="mnusub">
    <li>test1
    	<ul class="mnusub">
    		<li>test2</li>
    		<li>test11
    			<ul class="mnusub">
    				<li>test3</li>
    				<li>test4</li>
    				<li>test5</li>
    			</ul>
    		</li>
    	</ul>
    </li>
    <li>test5
    	<ul class="mnusub">
    		<li>test6</li>
    		<li>test7</li>
    		<li>test8</li>
    	</ul>
    </li>
    <li>test9</li>
    <li>test10</li>
</ul>
</body>
</html>

The key here is the ">" selector as it specifies direct descendants and not sub-descendants

enjoy

link|improve this answer
ooohhh >, i will try that and update . sounds very promising – schmoopy Oct 27 '09 at 15:29
Can't seem to get this working IE 7. Any ideas why? – Andy Rose Oct 27 '09 at 15:30
exactly what i was looking for, thank you. – schmoopy Oct 27 '09 at 16:07
Andy -- i tested in IE7 and it works for me? – schmoopy Oct 27 '09 at 16:08
show 1 more comment
feedback

When you want to affect each child individually, but without having to make style rules for each of those children, then you need more logic, which CSS doesn't provide. You could use something like PHP for that logic, or you could go with Javascript/jQuery. In that case, you can toggle CSS classes on child[x] through jQuery, and you only need to style those classes. Then it wouldn't matter which child got the class, it would be styled accordingly. Note that you should first make sure your menu is at least usable without Javascript, so users aren't dependent upon it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.