How to remove default file input style on IE10?

↘锁芯ラ 提交于 2019-12-12 07:41:28

问题


Here is my file input on different browsers. IE10 uses an horrible default style. Any idea about how to remove it?


回答1:


IE supports a number of pseudo elements for file inputs:

  • ::-ms-value for styling the part where the text is displayed
  • ::-ms-browse for styling the button

Using these you can style both parts of the file input however you wish.




回答2:


Use a reset CSS template (example: http://meyerweb.com/eric/tools/css/reset/)

And then style it yourself with your own CSS.



来源:https://stackoverflow.com/questions/17618952/how-to-remove-default-file-input-style-on-ie10

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!