Edit field width

I am using the list page width to set the width of the field in list and size in edit, this works well but anything with a dropdown stays wide.
Eg grid edit, inline edit and normal edit, with dropdown does not change.Where do I change the width of the dropdown field ?Many thanks

check the min-width property

Thanks, I did that in the HTML settings but it sets all the columns to a same min width, I need to set column widths individually in the gridedit page.
Any other options ?

Where would I change the field width to min width ?

Use the Row_Rendered server event and set the field’s CssStyle. For example:Field.CssStyle = “min-width: 100px;”;

This does not work for inline edit or grid edit.

Are you using select2? If yes, google for “select2 auto width”.