What is the CSS Box Model?

The CSS Box Model is used to help adjust how you want certain things to look like on the webpage. You adjust a varitey of things with the box model such as the contents width and height. You can adjust the white space around it by adjusting the padding, border, and marigin.

What is the difference between marigin and padding?

Between the marigin and padding is the border. Padding will adjust the amount of white space between your content and the border. Marigin will adjust the amount of white space between the border and the outside of the element.

How is the total height and width of an HTML element determined?

You determine the height and width of an element within the CSS style sheet. You use a number followed by px (#px), where px is for pixels. The bigger the number, the bigger the content will be.

Explain this CSS property: padding: 25px 50px;

By using a padding of 25px and 50px, you will create a white space of that size surrounding the content you use.