here's an image of whats going on:

http://imageshack.us/photo/my-images/217/ffbug.png/

here's my code:

select {
    width: 150px;
    height: 40px;
    padding-left: 10px;
}

in chrome and firefox, it vertically-aligns the select values perfectly. in firefox, the values are stuck to the top of the select.

i've tried adding vertical-align: middle and line-height: 40px, both of which changed nothing.

link|improve this question

2  
Answered here: stackoverflow.com/questions/5439782/… – Sylvio Nov 10 '11 at 7:29
feedback

2 Answers

Just use padding-top: 10px; padding-bottom: 10px; on that element. Your text will be automatically centerd.

link|improve this answer
1  
That will 'work', but it will also change the button within the <select> which is .. pretty ugly lookin. i.imgur.com/V64sW.png – CoryDanielson Nov 10 '11 at 7:36
Oh you're right, I've missed that. – Sn0opy Nov 10 '11 at 8:43
feedback
up vote 0 down vote accepted

i decided to put it in a div with this code:

.search li select {
    padding: 0px;
    margin: 0px;
}
.search li div {
    height: 32px;
    padding: 10px 10px 0px 10px;
    background: #ffffff;
}

the div background is same as the select background.

its pretty well centered in FF IE and chrome, only thing is the arrow is inside the padding as well...oh well...sometimes you can't win i guess.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.