I have an input type="file"
element with size="70"
and width="522px"
. It looks and works fine in all browsers on Windows but in Firefox on Linux the input element is bigger than 522 pixels.
Things I tried:
max-width:522px
but it doesn't work (Linux).- setting
size="52"
andmin-width:522px;
looks fine in Linux but doesn't work on in Firefox on Windows.
What can I do to specify 522 pixels width?