Welcome to lab4

What is the CSS box model? - "The CSS box model is essentially a box that wraps around every HTML element. It consists of: margins, borders, padding, and the actual content."

What is the difference between margin and padding? - The margin is the outer area surrounding the border, whereas the padding is the surrounding area within the border

How is an HTML element height and width determined - height and width is determined by setting height: Xpx where x is the amount of pixels you want the height to be, and setting width: x% in which x should be a number where width would be adjusted proportionally based on height

Explain this CSS propety: padding:25px 50px; - This property should adjust the top padding by 25 pixels, and the right padding by 50 pixels

What is the difference between a border and an outline? - Outlines do not take up space, and may be shapes of a non- rectangular nature