Learn CSS Colors by Building a Set of Colored Markers - Step 21

Tell us what’s happening:

Create a new CSS rule that targets the class container and set its background-color to black with rgb(0, 0, 0)

.container{
background-color: black;
}

You should add a link to your question. so we can help you.

But so far from what is see, you’re expected to give the rgb color for black not type out black directly.

there are different ways to add color. you can type out the color directly or use rgb codes.

replace the black in ur code with rgb(0, 0,0)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.