So, I have a simple User Name text field for the login page of my application. Here is the mark up for the text field:
As you can see the text field has the font-family specified, but even with that the style of the entered text ends up looking different in IE8 and Firefox-3. (Frankly, to me it is not a big deal/difference, but our QA is bent on fixing this )
Any ideas as to what else needs to be done so that the fonts looks exactly the same in both the browsers?
Code:
<td>
<input type="text" name="username" value="" id="loginUser_username" style="font-family:arial,sans-serif;"/>
</td>
As you can see the text field has the font-family specified, but even with that the style of the entered text ends up looking different in IE8 and Firefox-3. (Frankly, to me it is not a big deal/difference, but our QA is bent on fixing this )
Any ideas as to what else needs to be done so that the fonts looks exactly the same in both the browsers?