Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Field Width in Chrome vs Firefox Reply To: Field Width in Chrome vs Firefox

#170964
paulob
Participant

Hi,

If you are going to use the border-box model then give it to all browsers and not just moz.

-moz-box-sizing: border-box;

Use this instead:

-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-box-sizing: border-box;

Always finish the rule with the non pre-fixed version.