I stumbled upon a curiosity.
I have a select box that allows overflow with an option that exceeds the width of the select box:
When I select the option, however, part of the text disappears:
This appears to be related to the option's width. If I increase the option's width, I can select more of the text. However, even if I set it to 100% (of the select box), I still can't select all of the text.
Is this something obvious to the CSS experts out there?
After a little more thinking: width: 100% obviously won't work. Am I forced to use JavaScript to dynamically set the width of the options to the max width?

