Select dropdown with fixed width cutting off content in IE - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T00:07:15Z http://stackoverflow.com/feeds/question/682764 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/682764/select-dropdown-with-fixed-width-cutting-off-content-in-ie 1 Select dropdown with fixed width cutting off content in IE aaandre 2009-03-25T18:02:58Z 2009-08-07T07:51:32Z <p>The issue:</p> <p>Some of the items in the select require more than the specified width of 145px in order to display fully.</p> <p><strong>Firefox behavior</strong>: clicking on the select reveals the dropdown elements list adjusted to the width of the longest element.</p> <p><strong>IE6 &amp; IE7 behavior</strong>: clicking on the select reveals the dropdown elements list restricted to 145px width making it impossible to read the longer elements.</p> <p>The current UI requires us to fit this dropdown in 145px and have it host items with longer descriptions. </p> <p>Any advise on resolving the issue with IE?</p> <p>The top element should remain 145px wide even when the list is expanded.</p> <p>Thank you!</p> <p>The css: </p> <pre><code>select.center_pull { background:#eeeeee none repeat scroll 0 0; border:1px solid #7E7E7E; color:#333333; font-size:12px; margin-bottom:4px; margin-right:4px; margin-top:4px; width:145px; } </code></pre> <p>Here's the select input code (there's no definition for the backend_dropbox style at this time)</p> <pre><code>&lt;select id="select_1" class="center_pull backend_dropbox" name="select_1"&gt; &lt;option value="-1" selected="selected"&gt;Browse options&lt;/option&gt; &lt;option value="-1"&gt;------------------------------------&lt;/option&gt; &lt;option value="224"&gt;Option 1&lt;/option&gt; &lt;option value="234"&gt;Longer title for option 2&lt;/option&gt; &lt;option value="242"&gt;Very long and extensively descriptive title for option 3&lt;/option&gt; &lt;/select&gt; </code></pre> <p>Full html page in case you want to quickly test in a browser:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;title&gt;dropdown test&lt;/title&gt; &lt;style type="text/css"&gt; &lt;!-- select.center_pull { background:#eeeeee none repeat scroll 0 0; border:1px solid #7E7E7E; color:#333333; font-size:12px; margin-bottom:4px; margin-right:4px; margin-top:4px; width:145px; } --&gt; &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;Select width test&lt;/p&gt; &lt;form id="form1" name="form1" method="post" action=""&gt; &lt;select id="select_1" class="center_pull backend_dropbox" name="select_1"&gt; &lt;option value="-1" selected="selected"&gt;Browse options&lt;/option&gt; &lt;option value="-1"&gt;------------------------------------&lt;/option&gt; &lt;option value="224"&gt;Option 1&lt;/option&gt; &lt;option value="234"&gt;Longer title for option 2&lt;/option&gt; &lt;option value="242"&gt;Very long and extensively descriptive title for option 3&lt;/option&gt; &lt;/select&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/682764/select-dropdown-with-fixed-width-cutting-off-content-in-ie/682804#682804 2 Answer by zac for Select dropdown with fixed width cutting off content in IE zac 2009-03-25T18:10:01Z 2009-03-29T10:20:13Z <p>Here is a little script that should help you out:</p> <p><a href="http://www.icant.co.uk/forreview/tamingselect/" rel="nofollow">http://www.icant.co.uk/forreview/tamingselect/</a></p> http://stackoverflow.com/questions/682764/select-dropdown-with-fixed-width-cutting-off-content-in-ie/1143111#1143111 0 Answer by stukerr for Select dropdown with fixed width cutting off content in IE stukerr 2009-07-17T13:01:25Z 2009-07-17T13:01:25Z <p>Not javascript free i'm afraid, but I managed to make it quite small using jQuery</p> <pre><code>$('#del_select').mouseenter(function () { $(this).css("width","auto"); }); $('#del_select').mouseout(function () { $(this).css("width","170px"); }); </code></pre> http://stackoverflow.com/questions/682764/select-dropdown-with-fixed-width-cutting-off-content-in-ie/1243491#1243491 0 Answer by David Bernad for Select dropdown with fixed width cutting off content in IE David Bernad 2009-08-07T07:51:32Z 2009-08-07T07:51:32Z <p>Hi stukerr,</p> <p>I like your idea, but it doesn't work fine, when the select makes bigger and I want to select one option, the control lost the focus and goes little again, so I can't select any option.</p> <p>Do you know how can I solve this behaviour.</p> <p>Thank you very much. Regards.</p>