Parts of the Box Model
- Content: The actual text or image.
- Padding: Space between content and border.
- Border: Line around the element.
- Margin: Space between elements.
Example
div {
margin: 20px;
padding: 10px;
border: 2px solid black;
}
div {
margin: 20px;
padding: 10px;
border: 2px solid black;
}