Why is the text in this drop down not vertically centered in Firefox?

adinadinadin

New Member
In this fiddle the text in the drop down list is vertically centered in IE and Chrome...but not in Firefox where it is vertically top aligned. How do I center it in Firefox without disrupting the other browsers?HTML\[code\]<select> <option value="http://stackoverflow.com/questions/14609868/One" selected="selected">Test text one</option> <option value="http://stackoverflow.com/questions/14609868/Two">Test text two</option> <option value="http://stackoverflow.com/questions/14609868/Three">Test text three</option> <option value="http://stackoverflow.com/questions/14609868/Four">Test text four</option></select>\[/code\]CSS\[code\]select { height: 30px; width: 260px; border: 1px solid #A9A3A3; font-family: Verdana,Geneva,sans-serif; font-size: 11px; }\[/code\]
 
Back
Top