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.