Juri Strumpflohner
Juri Strumpflohner Juri is a full stack developer and tech lead with a special passion for the web and frontend development. He creates online videos for Egghead.io, writes articles on his blog and for tech magazines, speaks at conferences and holds training workshops. Juri is also a recognized Google Developer Expert in Web Technologies

Specifying the size of a FileUpload control on Firefox

1 min read

Apparently there seems to be a problem on Firefox when you want to specify a size for a file-upload box (which is an HTML input control of type "file"). If you just specify the width as style tag it will (surprisingly ;) ) work with IE but for some reason not with Firefox.

The solution to this problem is to specify a "size" attribute like:

<input type="file" id="someId" name="someName" size="10"/>

Questions? Thoughts? Hit me up on Twitter
comments powered by Disqus