Forum Moderators: not2easy
body, input, textarea { font-size: 100% }
in Firefox the text in the <textarea> is actually 1 or 2px smaller than in an <input> element.
In fact to get uniform size I have to put:
input {font-size: 100% }
textarea {font-size: 120% }
But then of course it's too big in IE which seems to get it right.
What does anyone do about this? I don't really want to set sizes in pixels for each element but I guess that's one solution.