If I have 2 input fields with no CSS, and then I add ONLY a background color to one, it changes the look of that field completely. It seems to change at minimum, the height, the border, the border-style and the border color.
I know I can change the CSS for all the input fields to make them match. But does anyone know what the CSS is for the default settings of an input text field? I like the way it looks and I have to match many that have no CSS.
example:
<style type="text/css">
#b {
  background-color: #FFF;
}
</style>
</head>
<body>
<form>
<input id="a" type="text" />
<input id="b" type="text" />
</form>
</body>