How can I remove this icon? #304
Answered
by
folknor
luishiguera
asked this question in
Q&A
-
Hello, this icon will appear when hovering over the input |
Beta Was this translation helpful? Give feedback.
Answered by
folknor
Dec 19, 2021
Replies: 2 comments
-
That's not added by autoComplete.js. https://www.google.com/search?q=css+remove+x+icon+in+input /* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; } |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
luishiguera
-
Or you could change the input field type from |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's not added by autoComplete.js.
https://www.google.com/search?q=css+remove+x+icon+in+input