i have a simple issue with HTML datalist but somehow cant solve this problem. i've tried to change the displayed width for the following datalist:
but no matter what i try, it still cuts down the "long" option values. how can i change that, so that the datalist shows all the option values, no matter how long they are?
best regards
<input list="browsers" name="browser" style="width: 100px;">
<datalist id="browsers">
<option value="this is a really long name for a browser">
<option value="Firefox">
<option value="Chrome">
<option value="Internet Explorer">
</datalist>
<input type="submit">