I have the following code where the content of the option
s overflows and you can't see the rest of the content.
I have tried to do it in the following way without any result. Ex:
div.po{
width:245px;
height: auto;
word-wrap: break-word;
}
select{
height: 220px;
width:250px;
}
<select multiple>
<option><div class="po">1 .-Lorem Ipsum es simplemente el texto de relleno de las imprentas y archivos de texto. Lorem Ipsum ha sido el texto de relleno estándar de las industrias desde el año 1500</div></option>
<option><div class="po">2 .-Lorem Ipsum es simplemente el texto de relleno de las imprentas y archivos de texto. Lorem Ipsum ha sido el texto de relleno estándar de las industrias desde el año 1500</div></option>
<option><div class="po">3 .-Lorem Ipsum es simplemente el texto de relleno de las imprentas y archivos de texto. Lorem Ipsum ha sido el texto de relleno estándar de las industrias desde el año 1500</div></option>
</select>
Check some questions like this one: Create wrap effect for option too long in select , but it doesn't help me at all since I need all the text to be read by the user.
how to put the format
word-wrap: break-word;
in options tags?
You need to use
white-space: normal;
like this: