0

Is is possible to wrap long text inside ?

<select><option value="1">A very long text that needs to be wrapped</option></select>
Mike Montesines
  • 151
  • 4
  • 8

1 Answers1

0

Untested.. but you could try assigning an id to that option.

<option id="longtext" value="1">

and then in css try something like

#longtext { width: 50%; }

or

#longtext { width: 200px; }

or

#longtext { width: 300px; height: 200px; }
bob
  • 859
  • 1
  • 8
  • 16