Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove 'x' Input Decoration In Microsoft Edge (formerly Project Spartan)

In the CSS of a website I'm currently working on we use the following CSS to hide the 'x' button that Internet Explorer 10 and 11 add to input fields for users to clear their contents:

input::-ms-clear {
  display: none;
}

Viewing the same website in the first build of Microsoft Edge (formerly codenamed "Project Spartan") on Windows 10 Build 10049 this CSS has no effect. This isn't surprising as Microsoft Edge is breaking away from the legacy of Internet Explorer, but I want to achieve the same effect.

What is the equivalent CSS required for Microsoft Edge to not render this?

like image 425
Martin Costello Avatar asked Apr 01 '15 17:04

Martin Costello


2 Answers

It turns out that the CSS had been broken since it was originally written, and this wasn't working in IE 10+ either.

Since fixing the CSS, Microsoft Edge (formerly Project Spartan) is behaving the same as IE10+ and not displaying the 'x' in input fields.

like image 116
Martin Costello Avatar answered Sep 22 '22 20:09

Martin Costello


Also you can use type="text" in input field to remove that X

like image 26
Karuppiah RK Avatar answered Sep 22 '22 20:09

Karuppiah RK