CSS Box Model

Understanding Content, Padding, Border, and Margin

🎯 Interactive Box Model Visualizer

Adjust the values below to see how the box model works in real-time:

200px × 100px
20px
5px
15px
CONTENT
Margin
Border
Padding

📊 Calculated Dimensions:

Content:
+ Padding:
+ Border:
Total Size:

📦 Box Sizing Comparison

See the difference between content-box and border-box:

box-sizing: content-box (default)

Width: 200px
Padding: 20px
Border: 5px
Total: 250px

box-sizing: border-box

Width: 200px
Padding: 20px
Border: 5px
Total: 200px

Click to see how box-sizing affects dimensions

🔄 Margin Collapsing Demonstration

Vertical margins between elements can collapse. See it in action:

Box 1
margin-bottom: 30px
Box 2
margin-top: 20px
Actual margin: 30px (larger value wins)
30px 20px

🎯 Padding vs Margin: Visual Comparison

Understanding when to use padding versus margin:

Using Padding

Click me!

✅ Padding extends the clickable area
✅ Background color fills padding
✅ Good for buttons and clickable elements

Using Margin

Click me!

❌ Margin creates space outside element
❌ Background doesn't extend to margin
✅ Good for spacing between elements

Try clicking both elements above to see the difference!

🖼️ Border Styles Showcase

Explore different border properties:

solid
dashed
dotted
double
groove
ridge
inset
outset

🎨 Border Customizer

5px
Custom Border Preview

💪 Practice Exercises

Test your understanding with these interactive challenges:

Exercise 1: Create a Card Layout

Adjust the properties to match the target design:

Target Design:
Perfect Card!
Your Design:
Your Card
0px 0px 0px

📚 Quick Reference

Box Model Properties

  • width, height - Content area
  • padding - Space inside border
  • border - Element boundary
  • margin - Space outside border

Box Sizing Values

  • content-box - Default behavior
  • border-box - Include padding/border

Shorthand Syntax

  • margin: 10px; - All sides
  • margin: 10px 20px; - V | H
  • margin: 10px 20px 15px; - T | H | B
  • margin: 10px 20px 15px 25px; - T R B L