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
  • 2,065
  • 1
  • 29
  • 64

1 Answers1

3

Use ::-ms-clear

input::-ms-clear {
    display: none;
}
LTasty
  • 1,987
  • 11
  • 20