coryj
coryj

Reputation: 1255

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

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

Upvotes: 2

Views: 829

Answers (2)

Shamoon
Shamoon

Reputation: 43639

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

Upvotes: 0

podiluska
podiluska

Reputation: 51514

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

Upvotes: 1

Related Questions