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;
}
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
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.