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?
|
feedback
|
|
There is no work-around for this aside from ditching the | |||
|
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 -> the select next to the big search box has the following css rules:
| ||||
feedback
|
|
If you need to show more items in your select list you can simply use the size attribute:
Doing this you'll have additional empty lines if your collection of items lenght is smaller than size value. | |||
|
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. | |||||||
feedback
|
|
You can use a replacement: jQuery Chosen. It looks pretty awesome. | |||
|
feedback
|
|
See also inconsistent box model between input, select, ... | |||
|
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. | |||
|
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. | |||
|
feedback
|