💊box-sizing

╱🚧 under construction

CSSbox model ⟩ box-sizing

border-box fix

/* :root = html (with higher specificity) */
:root { 
    box-sizing: border-box; 
}

/* "*" doesn't include pseudo-elements */
*, ::before, ::after {
    /* box-sizing isn’t normally an inherited property, */
    /* use `inherit` to force it.                       */
    box-sizing: inherit;
}

Last updated

Was this helpful?