Created
December 10, 2021 23:16
-
-
Save ebeloded/df40c4cff79988d3fe238f6a5d2c4826 to your computer and use it in GitHub Desktop.
input datalist unstyled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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