Step 45 Bug - Learn CSS Colors by building a set of colored markers

Please help. I think there is a bug in the CSS tutorial step 45.
Here is the instruction:

Update the CSS class selector .two so it targets the new green class. And update the .three selector so it targets the new blue class.

Here is my solution:

.red {

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

}

.green {

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

}

.blue {

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

}

My code wont work and it will not let me proceed. Here is a link: Step 45 - CSS
Please advise. Thank you.

Hey there! Welcome to the forums :wave: :slightly_smiling_face:

It looks like you’re doing more than the lesson asks for. They only want you to change the CSS selectors, not the actual color yet.

1 Like

Great! Thank you. It works. :slight_smile:

1 Like

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