Is there a way to achieve consistent width for a wide select list on different operating systems and browsers? I've noticed that the width of the select box varies between Windows and Mac OS when viewed in Chrome or other browsers.
For example, if you compare the width of the select box in http://jsfiddle.net/8Rxsc/5/ on Windows and Mac, you'll see differences - 295px on Windows and 278px on Mac.
<body>
<select>
<option selected>Select One</option>
<option>One </option>
<option>Two Two</option>
<option>Three Three Three </option>
<option>Four Four Four Four </option>
<option>Five Five Five Five Five </option>
<option>Six Six Six Six Six Six </option>
<option>Seven Seven Seven Seven Seven Seven Seven</option>
<option>Eight Eight Eight Eight Eight Eight Eight Eight </option>
<option>Nine Nine Nine Nine Nine Nine Nine Nine Nine </option>
<option>Ten Ten Ten Ten Ten Ten Ten Ten Ten Ten </option>
</select>
</body>