In my html5 code, I use this tag to select files to read from.
<input type="file" id="files" name="files[]" multiple />
But this has an browse button and I want to change it to a possibly a div tag so its just a click able element. I don't want to see that default browse button with the text appearing next to it.
Is there a css way to just change it so I don't see the button, yet I can still click it, or do I just have to hide it, and make something else click-able just manually click it, when clicked?