Is it possible to set the width of a jQuery autocomplete combobox?

后端 未结 14 2254

I am using this jQuery UI combobox autocomplete control out of the box off the jQuery UI website:

My issue is that I have multiple comboboxes on a page, and I want t

14条回答
  •  执笔经年
    2020-12-28 14:21

    Set the max width instead of width, because width is override by plugin any time..

    .ui-autocomplete-input
    { 
        max-width: 300px;/* you can set by percentage too */
    }
    

提交回复
热议问题