5 useful CSS properties
2. background
Allows setting a background color or image for an element.
div { background: yellow; }
4. padding
Defines the inner space between the content and the element's border.
div { padding: 10px; }
5. border
Allows defining the style, width, and color of an element's border.
p { border: 1px solid black; }