up vote 13 down vote favorite
5
share [g+] share [fb]

IE seems to ignore the height set in CSS when rendering a HTML SELECT. Are there any work around's for this or do we have to just accept IE will not look as good as other browsers?

link|improve this question

51% accept rate
feedback

8 Answers

up vote 6 down vote accepted

There is no work-around for this aside from ditching the select element.

link|improve this answer
feedback

you can use a combination of font-size and line-height to force it to go larger, but obviously only in the situations where you need the font larger too

edit:

Example -> http://www.bse.co.nz EDIT: (this link is no longer relevant)

the select next to the big search box has the following css rules:

#navigation #search .locationDrop {
    font-size:2em;
    line-height:27px;
    display:block;
    float:left;
    height:27px;
    width:200px;
}
link|improve this answer
font-weight can also have an effect. "font-weight: bold;" was having a positive effect for me without even realizing it (until I removed it today and found this article ;) – Campbeln Jul 13 '10 at 5:45
feedback

If you need to show more items in your select list you can simply use the size attribute:

<select multiple="multiple" size="15">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>

Doing this you'll have additional empty lines if your collection of items lenght is smaller than size value.

link|improve this answer
feedback

Use a UI library, like jquery or yui, that provides an alternative to the native SELECT element, typically as part of the implementation of a combo box.

link|improve this answer
I use jquery. Can anyone point to a good SELECT replacement that works with jQuery? – Craig Jan 29 '09 at 1:51
4  
like the one I linked to? – Sparr Jan 29 '09 at 2:23
feedback

You can use a replacement: jQuery Chosen. It looks pretty awesome.

link|improve this answer
feedback

See also inconsistent box model between input, select, ...

link|improve this answer
feedback

Even though setting a CSS height value to the select element does not work, the padding attribute works alright. Setting a top and bottom padding will make your select element look taller.

link|improve this answer
Padding does not work for me either on Firefox – Hasan Gürsoy Oct 13 '11 at 19:56
feedback

you could do similar to what facebook does, just add padding around. It is not as good as one could wish but looks reasonably well.

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.