I have a select box populated by some database fields. Some fields are way too long, so the option
width doesn't end. I would like to limit the width, and display an ellipsis using the text-overflow
property. However it does not work.
This is how I am trying to do it :
select option {
display: block;
text-overflow: ellipsis;
max-width: 100px;
}
Any idea how I could achieve this without JS?
Many thanks