My select menu has too many options to fit on the page. How can I implement a scrollable menu within the select box when it runs out of space?
<form>
<ul>
<li id="snow_filter">
<label>Enter Resort</label> <br>
<input class="snow_scroll" id="resort" type="text" list="resortname">
<datalist id="resortname">
<option value="Resort1">
<option value="Resort2">
<option value="Resort3">
<option value="Resort4">
...
<option value="Resort66">
</datalist>
I primarily work with HTML and CSS, so any solution using these languages would be highly appreciated!