File upload form style for all browsers
I use this JSF code for the form
<h:inputFile id="fileToUpload" value="#{contacts.file}"/>
    <h:commandButton value="Upload" action="#{contacts.upload()}">
        <f:ajax execute="fileToUpload" />
    </h:commandButton>
How I can make the form to look like in one style for all browser?

 
    