3I'm changing the width of a file input HTML tag:
<input type="file" id="newFilename" name="Filename">
input[type="file"] {width:380px !important}
In Firefox 3, Chrome and Safari it works perfectly.
In Firefox 4 I cant get it to work. The width remain the same!
Demo: http://jsfiddle.net/LwzW9/1/
Checking with Firebug I noticed that the size of the <input>
changes, but I don't really see the changes: (see image)
Any ideas? Is this a known bug?
Thanks.