How to have input box sizing in Firefox the same as in Chrome
Solution
input[type="text"], input[type="password"]
{
-moz-box-sizing: padding-box;
}
Another solution (more version of browsers supported)
input[type="text"], input[type="password"]
{
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Recent Comments