I think step 49 is broken! I did exactly what the step asked and when it didn’t work I went to YT and K-dev did exactly the same thing except he is allowed to move to the next step and I’m constantly being told that my code is incorrect! I’ve played with spacing and all but nothing is working. It’s a very simple step: change background-color to background with values rgb(255, 0, 0). the rgb values were set in a previous step so all you do is literally delete “-color”
In the .red
CSS rule, change the background-color
property to background
.
.red {
background: rgb(255, 0, 0);
}
Test
Sorry, your code does not pass. Try again.
Hint
Your .red
CSS rule should have a background
property with the value rgb(255, 0, 0)
.