1

I have a search box on my website. Whenever the user starts to type in information, this big black "X" appears on the right side. This X only appears on the Internet Explorer. I am currently using IE 11. Could you please tell me how to remove this X from IE?

Unwanted "X" in Internet Explorer

Gyum Fox
  • 3,287
  • 2
  • 41
  • 71

1 Answers1

3

Use ::-ms-clear

input::-ms-clear {
    display: none;
}
LTasty
  • 2,008
  • 14
  • 22