🎯 What you'll practice: Content, padding, border, margin, and the border-box fix.
1-B 2-C 3-B 4-B | 5 = 124 (100+10+10+2+2) 6 = * 7 = 200 + 15+15 + 5+5 = 240px 8 = 200px (padding and border are subtracted from content area instead of added) 9 = Because content-box (the default) makes width math unpredictable once padding/border are added — border-box lets a declared width stay the actual rendered width, matching how most designers think about sizing | 10 = With content-box, each column's padding adds extra width on top of the 33.33%, pushing total width over 100% and wrapping the last column; fix: add * { box-sizing: border-box; }.