box-sizing
Using universal border-box sizing.
:root {
box-sizing: border-box;
}
*,
::before,
::after {
box-sizing: inherit;
}
Every element will inherit the box-sizing from their parent. In case third-party components will have box-sizing: content-box
, using the inherit keyword will make the conversion easier.