Interactive Lesson: margin, padding, border
This lesson is focused on practice.
You already learned that every element is a box. Now you will change the space inside the box, the space outside the box, and the line around the box.
What you will practice
margincreates space outside the element.paddingcreates space inside the element.borderdraws a line around the padding and content.border-radiusrounds the corners of the box.border-stylechanges the type of line.
Try the interactive playground
Use the number inputs to change pixel values. Use the dropdown to try each border style.
Watch the preview box and the CSS code below it. Each control changes one CSS declaration.
Spacing and border playground
.preview-box {
margin: 24px;
padding: 24px;
border: 4px solid #2563eb;
border-radius: 12px;
}Preview box