Choosing CSS background color
The CSS background-color
property lets you change the background color for the selected element:
CSS background color is applied to the padding, but not the margin of the element. It is an animatable property, introduced in CSS1:
.example {
max-width: 100px;
height: 100px;
margin: 10px;
padding: 10px;
background-color: #333;
}

- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid certificates of completion

- Easy to navigate
- No technical issues
- Seems to care about its users
- Huge variety of courses
- 30-day refund policy
- Free certificates of completion

- Great user experience
- Offers quality content
- Very transparent with their pricing
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
CSS background-color property syntax
To apply a CSS background color, you need to follow the syntax example below:
background-color: value;
The default value for this property is transparent
. You can change it using the name, RGB or HEX value of the color you choose:
body {
background-color: rgb(0, 255, 0);
}
p {
background-color: red;
}
Tip: to get the value for the exact color tone you need, use the Pickeristic color picker.
Browser support

Chrome

Edge

Firefox

IE

Opera

Safari
Mobile browser support

Chrome

Firefox

Opera
