I would like to control <option> list width of <select> drop down. By default, browser calculates larger text in the <option> and accommodes drop down. It doesn't look good in sites. I had tried the following CSS snippet and found working in FF.
select{
width : 120px;
}
select option {
width : 90px;
}
The only trouble causer is Chrome. Could u let me know if any workarounds.