sblundy
2008-11-17 22:50:26
+4
A:
ul {
overflow: auto; // allow li's to overflow w/ scroll bar
// at the bottom of the menu
}
li {
white-space: nowrap; // stop the wrapping in the first place
}
Owen
2008-11-17 22:56:15
A:
You would also need to give the style the ul:
ul{
width:250px;
overflow:auto;
}
slashnick
2008-11-17 22:57:25