There are many select replacements out there, but even with limited options to style native form controls, we can still achieve custom-made results. See my post about styling select, radio, and checkbox if you want to know more.
<form>
<label for="input">Label:</label>
<input list="input-list" id="input" name="input">
<datalist id="input-list">
<option value="Option 1">
<option value="Option 2">
<option value="Option 3">
<option value="Option 4">
<option value="Option 5">
</datalist>
<button type="reset">Reset</button>
</form>
Live demo
Further reading
Newsletter
Level up your skills with useful web development & UX tips via e-mail.
Comments
If you have any thoughts, please contact me on LinkedIn or see the contact page for more options.