0

I'm trying to get rid of the "X" button that shows up when writing something in the search bar, or at least change it:

<input type="search">

I tried the following CSS:

input[type="search"]{-webkit-appearance: none;}

and some more webkit stuff that did not work.

Kaiser
  • 1,957
  • 1
  • 19
  • 28
Bar Afenjar
  • 31
  • 1
  • 1

3 Answers3

7

I tried searching Google for input type text remove close. I got this result. You can use the following code to remove it on Chrome or Internet Explorer.

/* 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; }
<input type="search" />

I got the above code from: Remove the X from Internet Explorer and Chrome input type search | Maxime Rouiller.

Just found that it could be a possible duplicate of Remove IE10's "clear field" X button on certain inputs?

Praveen Kumar Purushothaman
  • 164,888
  • 24
  • 203
  • 252
3

Try the following CSS code:

 /* 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; 
}

See more at link

Kaiser
  • 1,957
  • 1
  • 19
  • 28
-3

Thanks this is the code that did the job:

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
Praveen Kumar Purushothaman
  • 164,888
  • 24
  • 203
  • 252
Bar Afenjar
  • 31
  • 1
  • 1