Select dropdown with fixed width cutting off content in IE - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T00:07:15Zhttp://stackoverflow.com/feeds/question/682764http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/682764/select-dropdown-with-fixed-width-cutting-off-content-in-ie1Select dropdown with fixed width cutting off content in IEaaandre2009-03-25T18:02:58Z2009-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 & 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><select id="select_1" class="center_pull backend_dropbox" name="select_1">
<option value="-1" selected="selected">Browse options</option>
<option value="-1">------------------------------------</option>
<option value="224">Option 1</option>
<option value="234">Longer title for option 2</option>
<option value="242">Very long and extensively descriptive title for option 3</option>
</select>
</code></pre>
<p>Full html page in case you want to quickly test in a browser:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>dropdown test</title>
<style type="text/css">
<!--
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;
}
-->
</style>
</head>
<body>
<p>Select width test</p>
<form id="form1" name="form1" method="post" action="">
<select id="select_1" class="center_pull backend_dropbox" name="select_1">
<option value="-1" selected="selected">Browse options</option>
<option value="-1">------------------------------------</option>
<option value="224">Option 1</option>
<option value="234">Longer title for option 2</option>
<option value="242">Very long and extensively descriptive title for option 3</option>
</select>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/682764/select-dropdown-with-fixed-width-cutting-off-content-in-ie/682804#6828042Answer by zac for Select dropdown with fixed width cutting off content in IEzac2009-03-25T18:10:01Z2009-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#11431110Answer by stukerr for Select dropdown with fixed width cutting off content in IEstukerr2009-07-17T13:01:25Z2009-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#12434910Answer by David Bernad for Select dropdown with fixed width cutting off content in IEDavid Bernad2009-08-07T07:51:32Z2009-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>