I'm working in a web page for mobile browsers. I have a select list that will show an option selected, the problem is that when the selected option has a long string, by default, is truncated, I'd like to show the full text because these are questions that the user should answer. I've been trying with css incrementing the height of the select element but the text is always truncated, and I can't find on Internet any answer for it I could find only to increment the items length but not the selected option. Thank you in advance for your help.
<select name="select">
<option value="value1">Value 1</option>
<option value="value2" selected>Very long string to show by default</option>
<option value="value3">Value 3</option>
</select>