1
HTML/CSSBeginner#css#pseudo-classes
box-sizing: border-box makes width/height include padding and border, so adding padding doesn't unexpectedly grow the element beyond its declared size — matching how most developers intuitively expect sizing to work, unlike the default content-box.
*, *::before, *::after { box-sizing: border-box; }
.box { width: 300px; padding: 20px; border: 2px solid; } /* still 300px wide total */