Setting the height of a SELECT in IE - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:34:09Z http://stackoverflow.com/feeds/question/490036 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/490036/setting-the-height-of-a-select-in-ie 0 Setting the height of a SELECT in IE Craig 2009-01-29T00:24:44Z 2009-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#490083 1 Answer by Ken Browning for Setting the height of a SELECT in IE Ken Browning 2009-01-29T00:50:40Z 2009-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#490190 1 Answer by Sparr for Setting the height of a SELECT in IE Sparr 2009-01-29T01:34:06Z 2009-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#490206 1 Answer by Darko Z for Setting the height of a SELECT in IE Darko Z 2009-01-29T01:43:09Z 2009-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>