Explain the CSS Box Model and how it calculates element sizing.
expand_more
box-sizing: content-box is active, where width/height only set the Content area. Padding and borders are added to calculate the total size. Setting box-sizing: border-box changes this behavior, forcing width/height to include padding and borders, which is cleaner and preferred.