Example

Set the background-color of different elements:

body {
    background-color: yellow;
}

h1 {
    background-color: #00ff00;
}

{
    background-color: rgb(255,0,255);
}

Try it yourself ยป

More "Try it Yourself" examples below.