What did i do wrong w that?

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

<style>
body {
  background-color: rgb(0.0.0);
}
</style>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36

Challenge: Use RGB values to Color Elements

Link to the challenge:

Hello!

You used a dot instead of a comma:

Wrong

background-color: rgb(255.255.255);

Correct

background-color: rgb(255, 255, 255);
1 Like

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