Master Margin, Border, Padding and Content.
Every HTML element is treated like a box. The box has four parts:
.box{
width:300px;
padding:20px;
border:3px solid blue;
margin:30px;
}
Create a box that has:
| Property | Purpose |
|---|---|
| Content | The actual text or image. |
| Padding | Space inside the border. |
| Border | Line around the element. |
| Margin | Space outside the element. |
Which property creates space outside an element?