Hi, uhm can anyone help me out in creating a list box or a drop-down that has a standard size. Here's an example that I really want to display:
<select name='color[]' size=2 multiple>
<option value='' selected>Select Item</option>
<option value='blue'>Blue</option>
<option value='green'>Green</option>
<option value='red'>Red</option>
<option value='yellow'>Yellow</option>
<option value='white'>White</option>
</select>
Say, I just wanted to display a 3 letter only output. So if the option exceeds 3 letters, it should not display the succeeding letters. Its like the list box or drop-down should have a standard size in terms of letters not visible options since select tag do have a 'size' attribute that can manipulate the visible display of options.