Homework 3 - Danny Stax - CS2680

1. The CSS box model is a model that wraps around every HTML element. It consists of the Margin, Padding, Border and Content.
2. The difference between margin and padding is Padding is inside the border and Margin is outside the border.
3. The total height and width of an HMTL element is determined by the width of the element + the border on both sides + the margin on both sides + the padding on both sides.
4. The CSS property: padding: 25px 50px; works the following: THe padding on the top and bottom are 25px and on the left and right are 50px.