Setting the height of a SELECT in IE - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T18:34:09Zhttp://stackoverflow.com/feeds/question/490036http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/490036/setting-the-height-of-a-select-in-ie0Setting the height of a SELECT in IECraig2009-01-29T00:24:44Z2009-09-02T10:35:52Z
<p>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?</p>
http://stackoverflow.com/questions/490036/setting-the-height-of-a-select-in-ie/490083#4900831Answer by Ken Browning for Setting the height of a SELECT in IEKen Browning2009-01-29T00:50:40Z2009-01-29T00:50:40Z<p>There is no work-around for this aside from ditching the <code>select</code> element.</p>
http://stackoverflow.com/questions/490036/setting-the-height-of-a-select-in-ie/490190#4901901Answer by Sparr for Setting the height of a SELECT in IESparr2009-01-29T01:34:06Z2009-01-29T01:34:06Z<p>Use a UI library, like <a href="http://jquery.sanchezsalvador.com/jquery/page/jquerycomboboxexamplebasic.aspx" rel="nofollow">jquery</a> or <a href="http://developer.yahoo.com/yui/examples/autocomplete/ac_combobox.html" rel="nofollow">yui</a>, that provides an alternative to the native SELECT element, typically as part of the implementation of a combo box.</p>
http://stackoverflow.com/questions/490036/setting-the-height-of-a-select-in-ie/490206#4902061Answer by Darko Z for Setting the height of a SELECT in IEDarko Z2009-01-29T01:43:09Z2009-01-29T01:43:09Z<p>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</p>
<p>edit: </p>
<p>Example -> <a href="http://www.bse.co.nz" rel="nofollow">http://www.bse.co.nz</a></p>
<p>the select next to the big search box has the following css rules:</p>
<pre><code>#navigation #search .locationDrop {
font-size:2em;
line-height:27px;
display:block;
float:left;
height:27px;
width:200px;
}
</code></pre>