How to set the max height of a css drop-down menu without using javascript?

My example is here

There are many items in the drop-down menu. I want to set the max height and display scroll bar if there are too many items.

I tried to set

<ul id="nav" style="max-height: 500px;height:500px;">

But not works.

Thanks!

link|improve this question

Add overflow: auto, but since your ul is actually wider than the Fiddle sub-window, the scrollbar will be hidden offscreen to the right. Your ul is larger than the whole subwindow. Adding border: 1px solid blue; to its style will show you that. – Marc B Nov 2 '11 at 22:01
feedback

3 Answers

up vote 3 down vote accepted

Just add "overflow: auto;" to the container: http://jsfiddle.net/wVsw4/1/

link|improve this answer
feedback

Try adding to the style

 overflow:hidden
link|improve this answer
feedback

I removed the style tag from your html and in the css I added:

height: 500px;
overflow: hidden;

The last item that showed was #7. http://jsfiddle.net/wVsw4/7/

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.