Skip to content

Instantly share code, notes, and snippets.

@ebeloded
Created December 10, 2021 23:16
Show Gist options
  • Save ebeloded/df40c4cff79988d3fe238f6a5d2c4826 to your computer and use it in GitHub Desktop.
Save ebeloded/df40c4cff79988d3fe238f6a5d2c4826 to your computer and use it in GitHub Desktop.
input datalist unstyled
<label for="browser">Choose your browser from the list:</label>
<input type="text" list="browsers" name="browser" id="browser" />
<datalist id="browsers">
<option value="Edge"></option>
<option value="Firefox"></option>
<option value="Google Chrome"></option>
<option value="Opera"></option>
<option value="Safari"></option>
</datalist>
<style global>
[list]::-webkit-calendar-picker-indicator,
[list]::-webkit-list-button {
display: none !important;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment