0

I have a problem with selectBox.

<select style="width: 200px">
     <option>Bosnia and Herzegovina</option>
     <option>Bosnia and Herzegovina, Convertible Marks</option>
</select>

Issue: width of popup show options list larger than width of select tag.

And I wants popup show options list will be set width is 200px (as select).

I try to research, but I can't find any solution for this.

Please help me! Thanks.

ThuyNguyen
  • 1,127
  • 3
  • 14
  • 24

1 Answers1

0

Have you tried style:ing the options as well?

select,
select option {
    width: 200px;
}

select option {
    display: block;
}
Eric
  • 18,532
  • 2
  • 34
  • 39