webkitboxsizing
WebKitBoxSizing, commonly seen as the CSS property -webkit-box-sizing, is the vendor-prefixed version of the standard CSS box-sizing property used in WebKit-derived browsers such as Safari and older versions of Chrome. It controls how an element’s width and height are calculated by determining whether padding and borders are included within the defined size.
Historically, -webkit-box-sizing appeared before the box-sizing property was standardized and widely implemented without a prefix. As
The box-sizing property has two main values: content-box and border-box. content-box uses the standard CSS box
In JavaScript, the prefixed property is accessed via the camelCase form WebkitBoxSizing on an element’s style
See also box-sizing, the CSS box model, and vendor-prefixed CSS properties.