Update the rgb function in the .red rule so that the red value is at the max

BUG WITH COLORS MARKERS COURSE
I’m literally entering the CODE correctly and it keeps on providing me an error. I had this issue multiple times on this particular course. Usually by “restarting the step” or deleting the code and adding it from scratch helps, but this time it is not working at all. I cannot proceed with the remaining steps for the course…

  **Your code so far**
h1 {
  text-align: center;
}

.container {
  background-color: rgb(255, 255, 255);
  padding: 10px 0;
}

.marker {
  width: 200px;
  height: 25px;
  margin: 10px auto;
}

.red {
  background-color: rgb(225, 0, 0);
}

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

.three {
  background-color: rgb(0, 0, 0);
}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 43

Link to the challenge:

This isn’t the maximum value. It is close but you have a typo.

1 Like

Thank you Jeremy, saw my mistake.

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