I have a page that visually has two fields right on top of each other, but are actually in two different forms.
In Firefox, they appear to have the same width. In IE (IE6, IE7, IE8) they appear with different widths.
Here's a sample, I think the problem is the lack of "size="
<input id="fieldid" type="text" name="fieldname" value="" />
When you do this (without a size), what is the size?
I found some docs on HTML3 and HTML4...
but could not get a clear idea if what the default value should be.
From playing with Firebug in Firefox 3.0, it looks like it is 20 in Gecko.
In IE, it looks variable, based on some other conditions I do not understand.
UPDATE:
I did try to compare the two form's characteristics further, but was unable to isolate the variable. I did hack the file to make the both use set size=20, but the widths are still different (although less than before).