Sets the text color of an element.
p {
color: red;
}
More info: W3C color property
Sets the background color of an element.
div {
background-color: lightblue;
}
More info: W3C background-color
Sets the outer space of an element.
div {
margin: 20px;
}
Note: Background color and border added to better visualize the margin effect.
More info: W3C margin property
Sets the inner space between content and border.
div {
padding: 15px;
}
Note: Background color and border added to better visualize the margin effect.
More info: W3C padding property
Defines how an element is displayed in the layout.
div {
display: inline-block;
}
More info: W3C display property