I’m using the following input field
<input class="upload_button" type="file" multiple="" name="userfile">
To upload multiple files to a system, I can’t work out how to style this with CSS properly, as the button and input box seem to be binded together?!
You can’t use CSS to style
<input type="file"/>element directly; this is a precaution used by web browsers to prevent user’s into being tricked into uploading files.But there are techniques that work around it, using transparency that works well.
http://www.quirksmode.org/dom/inputfile.html