demo for http://stackoverflow.com/a/18150649/578288

answer to "Small dropdown, large data"

by roryokane

HTML

<select id="menu">
    <option>short</option>
    <option>a quite long option that is wider than the select</option>
    <option>another option</option>
</select>

CSS

#menu {
    width: 100px;
}