My problem is this:
I have a form, and I put in this, of course, the <input>
.
But in all inputs is having a little problem of compatibility between Chrome and Firefox. I believe that Chrome increases 2px on top compared to Firefox.
I'm going to pass code. What should I do? Using different values in CSS for webkit and moz?
Here is my HTML:
<div id='FirstName_container'>
<input type='text' name='FirstName' id='FirstName' value='' size='20' class='name1' placeholder="First name"/>
</div>
Here is the CSS:
#contact_form1 #FirstName_container {
position:absolute;
left:152px;
top:12px;
z-index:5;
}
What I can do? Thanks all in advance!