How to fix the size of the <html:select> combo box (contents may be larger but the combo size should be fixed)

28,473

Solution 1

<select style="width: 100px">
  <option>Veeeeeeeeeeeeeeeery lllllllllllllloooong option</option>
</select>

or even better

<style>
.fixed-size  {
  width: 100px;
}
</style>

<select class="fixed-size">
  <option>Veeeeeeeeeeeeeeeery lllllllllllllloooong option</option>
</select>

Solution 2

Set the css style to "width:100px" or whatever width you want the combo box to be.

Share:
28,473
DSB
Author by

DSB

Updated on May 07, 2020

Comments