I use the standard box model.
I use the alternate box model.
.box { border: 5px solid rebeccapurple; background-color: lightgray; padding: 40px; margin: 40px; width: 300px; height: 150px; } .alternate { box-sizing: border-box; }
I use the standard box model.
I use the alternate box model.