Explanation: CSS is used to style HTML elements.
It changes color, size, spacing and layout.
Example:
p {
background-color: yellow;
}
This is background color
p {
border: 2px solid black;
}
Border Example
Margin creates space outside element.
Padding creates space inside element.
Every element is a box with margin, border and padding.