css.properties

box-sizing

The box-sizing property specifies how the total width and height of an element is calculated.

Formal Syntax

content-box | border-box

See specification

JavaScript Access

// Access via element.style
element.style.boxSizing = 'content-box';

Browser Support

standard | MDN ยท Spec

FeatureChromeFirefoxSafariEdge
box-sizing10295.112
border-box11312
content-box11312

Related Properties