I know it is possible to set a CSS width for a drop-down menu. In FF the top window is affected by it, while the option items scale as far as the content in them, however in IE the options are also as wide as the window, thus cutting the options' labels.
Is there a better way to control the width of SELECT element?
<select style="width:100px">
<option>Very long label 1 is gpoing to be here</option>
<option>Very long label 2 is gpoing to be here</option>
</select>