I'm just testing with styling HTML form input boxes (single line for now) and have a quick question with line-height issues...
http://www.thinkcreactive.com/forms/ This shows the example. Below are screenies with FF and IE and you can see the (slight?) difference, though I want it to be the same.
For the life of me I can't figure out a FF fix (as it works properly in IE).
FF:

IE:

As you can see the FF version is slightly higher.. His is the CSS I have for the input boxes:
CODE
.inputtext {
background: url('input-text.png') transparent no-repeat;
width: 400px;
height: 25px;
font-size: 12pt;
line-height: 150%;
padding: 0px;
border: 0px;
margin: 0px;
text-align: center;
font-family: Arial; }
background: url('input-text.png') transparent no-repeat;
width: 400px;
height: 25px;
font-size: 12pt;
line-height: 150%;
padding: 0px;
border: 0px;
margin: 0px;
text-align: center;
font-family: Arial; }
Any ideas for fixes?
EDIT: It's FF3 and IE8
EDIT 2: I have tried using line-height: 25px; and it does the same thing as the 150% so that is not a possible fix.