Lab 4

1. The CSS box model is design structure that encompasses HTML elements. It consists of 3 adjustable settings, margins, borders, and padding.

2. The Margin is the area between the edge of the browser and the border, while the Padding the the area between the border and the content.

3. The height and width is determine by adding the total pixels of the content, padding, border, and margin.

4. The CSS property "padding: 25px 50px;" sets the top and bottom padding to 25px and the left and right padding to 50px.

5. An outline is always outside of the border.