Lir An
Lir An

Reputation: 123

Items inside select box looks weird in ie8

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

Answers (1)

Alex
Alex

Reputation: 35417

Use padding instead of the height property to style the select list ...

select { padding:4px 0; }

Upvotes: 3

Related Questions