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!
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. Addingborder: 1px solid blue;to its style will show you that. – Marc B Nov 2 '11 at 22:01