Removing vertical scrollbar in a dropdown
开发者_如何学PythonHow to remove vertical scrollbar in a dropdown?
.someclass { /* or ID */
overflow: hidden;
}
Check this under Windows XP style menu
Many web-sites does not actually use the dropdown (select-option) natively in the code since it is very hard to style it.
They usually use a simulation of dropdown using other element and position absolute divs to mock-up the drop down and then they have full control on the styling.
Look at http://jquery-ui.googlecode.com/svn/branches/labs/selectmenu/index.html
精彩评论