This can be done using the jQuery plugin found in
http://www.jainaewen.com/files/javascript/jquery/ie-select-style/#demo
The plugin is very easy to use. Some full working code is broken here.
HTML
<select id="test" > <option>choose on</option> <option>aaaaaaaaaaaaaaaaaaaaaaa</option> <option>bbbbbbbbbbbbbbbbbbbbbbb</option> <option>ccccccccccccccccccccccc</option> <option>ddddddddddddddddddddddd</option> </select>
CSS
#test{ width:100px; border:1px solid red; }
JQuery
Do not forget to include the jquery js file and the js file of this plugin.
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1.min.js" type="text/javascript"></script> <script type="text/javascript" src="http://files.jainaewen.com/files/javascript/jquery/ie-select-style/jquery.ie-select-style.min.js"></script>
Then add the following:
<script type="text/javascript"> $('#test').ieSelectStyle(); </script>
All this should pass to the closing </body>
source share