I'm using select field for listing a number of options. The width of the options are very wide compared to the select field width. The mozilla renders all the options very fine as it shows the full width of the options. But IE, it is always inviting troubles. IE shows the options of the select field whose width is equal to the select field width. So, I can't see the whole length options in IE. Is there any solution to this problem?
Here is the example of the code
Here is the example of the code
Code:
<tr><td > <select style="width:100px" name="menu"> <option value="">Select Menu</option> <option value="1">Hello a very Good morning to everybody</option> </select> </td></tr>
Comment