Reputation: 123
I have a select box I made,that looks OK on every browsers except IE8 ,in IE8 the items are near the bottom and not in the middle.
link: https://dl.dropbox.com/u/107452929/select/index.html
Upvotes: 1
Views: 522
Reputation: 35417
Use padding
instead of the height
property to style the select
list ...
select { padding:4px 0; }
Upvotes: 3