Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Looking for advice to display options with long text to the users Re: Looking for advice to display options with long text to the users

#128077
Paulie_D
Member

I’ve tried the basic options in CSS and most of them fail on the [option] element.

You can try

select, option {
max-width: insert your value here;
}

which will cut of the text after the value is reached BUT this is pretty much only FF supported for BOTH.

It works on the [select] element OK but not for the [option] in Chrome, Safari, IE10.