This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
The CSS background properties are used to add background effects for elements.
In these chapters, you will learn about the following CSS background properties:
The
property specifies the background color of an element.The background color of a page is set like this:
body { background-color: lightblue; }
With CSS, a color is most often specified by:
Look at CSS Color Values for a complete list of possible color values.
You can set the background color for any HTML elements:
Here, the <h1>, <p> and <div> elements will have different background colors:
h1 { background-color: green; } div { background-color: lightblue; } p { background-color: yellow; }
The
property specifies the opacity/transparency of an element. It can take a value from 0.0 - 1.0. The lower value, the more transparent:div { background-color: green; opacity: 0.3; }
Note: When using the
property to add transparency to the background of an element, all of its child elements inherit the same transparency. This can make the text inside a fully transparent element hard to read.If you do not want to apply opacity to child elements, like in our example above, use RGBA color values. The following example sets the opacity for the background color and not the text:
You learned from our CSS Colors Chapter, that you can use RGB as a color value. In addition to RGB, you can use an RGB color value with an alpha channel (RGBA) - which specifies the opacity for a color. An RGBA color value is specified with: rgba(red, green, blue, alpha). The alpha parameter is a number between 0.0 (fully transparent) and 1.0 (fully opaque).
Tip: You will learn more about RGBA Colors in our CSS Colors Chapter.
div { background: rgba(0, 128, 0, 0.3); /* Green background with 30% opacity */ }