<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<style type="text/css">
input {
border-width: 2px; /* causes button to change dramatically in IE and FireFox */
}
</style>
</head>
<body>
<input type="button" value="Print"/>
</body>
</html>
If I let each browser render the button without any styles, they all look similar to this:

As an example, with IE 8, the default border width is 2px. What I did was add a style for the button that sets the border width to 2px. So, I haven't changed the border width at all. However, upon reloading the page, the button now looks like this:

I don't understand it at all. I looked at Developer Toolbar, Opera's Dev tool, Firebug, Safari's Dev tool, and analyzed each button. Why is it that FireFox and IE cause the button to change so dramatically, while Safari, Chrome, and Opera keep the look and feel exactly the same? I don't understand why the button changes color and loses it's 'rounding' and becomes 'square'.
I even added the YUI reset link that I've been seeing everywhere, researching this problem, and it didn't help.
What am I doing wrong?
I just want to make the button's border, padding, and margin even across all browsers so they look the same, while keeping it's look and feel like the default button (
), but IE and FireFox are making that difficult at the moment.
Thank you.
border-radius:2px;– Linas Jan 25 '12 at 16:12