0

I have a selectonemenu which has list of currency. When i click the menu, In mozilla and IE 11, the width of dropdown is same as the width of selectonemenu

but, when I try to do so in chrome, the panel width is smaller than the selectone menu

1 Answers1

1

Set width in CSS file for class

 .ui-selectonemenu-panel {
    width : YOUR_WIDTH !important ;
 }
tankucukoglu
  • 455
  • 6
  • 20
  • Try to prevent using !important by making selectors more specific. Read about [specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity) – Kukeltje Sep 10 '15 at 08:52