2

How would one go about styling the <input type="file"> button?

Shamoon
  • 41,293
  • 91
  • 306
  • 570
coryj
  • 1,255
  • 3
  • 14
  • 29

2 Answers2

1

With great difficulty!

In general, you can't style it as you would other elements. Workarounds do exist, but none of them are completely satisfactory.

See http://www.quirksmode.org/dom/inputfile.html

podiluska
  • 50,950
  • 7
  • 98
  • 104
0

You can't through CSS. You need to use a JavaScript overlay that hides the display of the File Upload.

Look at http://www.quirksmode.org/dom/inputfile.html for an example

Shamoon
  • 41,293
  • 91
  • 306
  • 570