How to enable the select option text to go to the next line in firefox?
In chrome, the text goes to the next line for the option element but it does not go in firefox. I have tried a lot of css classes but does not work. I have provided the image and the code below. Really appreciate your help. Thanks in advance.
Below are the 2 images:
chrome (correct)
firefox (incorrect - want to fix this one)
Code:
<select class="detail-ta" id="detail-ta2" size="10">
<option style="text-overflow: clip; overflow: visible; white-space: -moz-pre-wrap; white-space: pre-wrap; margin-bottom: 1px;"></option>
</select>