How to remove the button style and dropdown menu in Internet explorer

0

Good I want to remove the default style of internet explorer buttons, I tried with -webkit-appearance: inherit; and none but both running on chrome mozilla and safari on explorer did not just work for me attached photos to see difference.

I want to remove the button styles and dropdown menus from a wordpress page I used this:

I have a post

-moz-appearance:inherit; -o-appearance:inherit;
 -ms-appearance:inherit;
 appearance:inherit;
 -webkit-appearance:inherit;

And still in Internet Explorer it does not work. It works for me in Opera, Firefox and Chrome. Any ideas?

    
asked by Moisés 17.07.2017 в 11:55
source

2 answers

0

Let's see if this works for you:

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  background: none;
  border: 0;
  color: inherit;
  /* cursor: default; */
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none; /* for button */
   -webkit-appearance: button; /* for input */
     -moz-user-select: none;
      -ms-user-select: none;
}
    
answered by 02.08.2017 в 14:42
0

That you can remove it easily adding a normalized to your html, I leave the link for you to download and add it, that way you will return all the parameters or styles to 0 to say it in a certain way and will not overwrite your CSS that you have created.

link

    
answered by 21.10.2018 в 22:07