I have this:
<select id="combo1" size="7" name="operacion">
<option selected="" value="000">Selecciona una categoría</option>
<option value="1">"AUTORIZACIÓN PARA TRABAJAR POR CUENTA PROPIA"</option>
<option value="2">"MODIFICACIONES"</option>
<option value="3">"RENOVACIÓN"</option>
</select>
And it's width is fixed but as it happens that the options come from a database they are sometimes too long and there's no way I can see them.
You can see it here: http://jsfiddle.net/vN47R/
Only thing I could find was In a fixed width <select multiple> html box, is there a way to see text options that are to long? but didn't help me out.