Recall & Review
beginner
What are the four parts of the CSS box model?
The four parts are: content, padding, border, and margin. Content is the actual stuff inside the box. Padding is space inside the box around the content. Border is the line around the padding. Margin is the space outside the border separating boxes.
Click to reveal answer
beginner
How does padding affect the size of a box?
Padding adds space inside the box around the content, making the box bigger without changing the content size. It pushes the border outward.
Click to reveal answer
beginner
What is the difference between margin and padding?
Padding is space inside the box between content and border. Margin is space outside the box that separates it from other boxes.
Click to reveal answer
beginner
Why is understanding the box model important for web layout?
Because it helps you control spacing and size of elements on a page. Knowing how content, padding, border, and margin work lets you design neat and organized layouts.
Click to reveal answer
intermediate
What happens if you set margin to auto on a block element?
Setting margin to auto horizontally centers the block element within its container if the width is fixed.
Click to reveal answer
Which part of the box model is directly around the content?
✗ Incorrect
Padding is the space inside the box that surrounds the content.
What does the margin do in the box model?
✗ Incorrect
Margin adds space outside the border, separating the box from others.
If you want to add space between the content and the border, which property do you use?
✗ Incorrect
Padding adds space inside the box between content and border.
What effect does increasing the border width have on the box size?
✗ Incorrect
Increasing border width adds to the total size of the box.
How can you center a block element horizontally using margin?
✗ Incorrect
Setting margin-left and margin-right to auto centers the block horizontally.
Explain the CSS box model and how each part affects the size and spacing of an element.
Think about what is inside the box and what is outside.
You got /5 concepts.
Describe how you would center a block element horizontally on a webpage using the box model properties.
Focus on margin settings.
You got /4 concepts.