how to make width of select options fixed and give text break to lengthy options ? I tried adding max-width to options. But its not working.
select{
max-width:100px !important;
}
select option{
max-width:100px !important;
overflow: hidden !important;
white-space: break-spaces;
}
<!DOCTYPE html>
<html>
<body>
<label for="cars">Choose a car:</label>
<select name="cars" id="cars">
<option value="volvo">Hey this is the problem related to our CSS select option drop down. width is not working in options</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
<br><br>
<input type="submit" value="Submit">
</body>
</html>