In the standard CSS box model, a block element's box is built from four layers, from the inside out. Which ordering is correct?
- acontent, then margin, then border, then padding
- bcontent, then padding, then border, then margin✓
- ccontent, then border, then padding, then margin
- dpadding, then content, then margin, then border
Explanation:Content is the innermost layer; padding surrounds the content inside the border; the border wraps the padding; and margin is the outermost transparent space between this box and its neighbors. Option (a) swaps margin and padding — margin always sits outside the border, never between content and border.