Here is my file input on different browsers. IE10 uses an horrible default style. Any idea about how to remove it?
相关问题
- Adding a timeout to a render function in ReactJS
- What is the best way to do a search in a large fil
-
Why does the box-shadow property not apply to a
- Add animation to jQuery function Interval
- jQuery hover to slide?
Use a reset CSS template (example: http://meyerweb.com/eric/tools/css/reset/)
And then style it yourself with your own CSS.
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 buttonUsing these you can style both parts of the file input however you wish.