When I work on one of my projects I found that the CSS box-sizing property is not automatically inherit in Firefox. Chrome, however, will do the work for you. In my case, it's like:
<form style="box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;">
<input id="input1"></input>
<input id="input2"></input>
</form>
The box-sizing property is not inherited by the two inputs in firefox.
Am I supposed to add it to the child nodes manually in the future? Is any convention I missed?
Thanks!