Am I missing something 🥸? #46

Instructions Read:

“In the .green CSS rule, set the background-color property to a hex color code with the values 00 for red, FF for green, and 00 blue.”

I thought I entered my code correctly but it keeps saying i got it incorrect.
Any advice would be wonderful to this new coder :slight_smile:

CODE IN QUESTION:
.green{
background-color: hex(#00FF00);
}

  **My code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Colored Markers</title>
  <link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
  <h1>CSS Color Markers</h1>
  <div class="container">
    <div class="marker red">
    </div>
    <div class="marker green">
    </div>
    <div class="marker blue">
    </div>
  </div>
</body>
</html>
/* file: styles.css */
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(255, 0, 0);
}

.green{
background-color: hex(#00FF00);
}


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

  **Your browser information:**

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

Challenge: Step 46

Link to the challenge:

no this was the first one introducing it.
Should i try refreshing the site?

Remove the word hex and parentheses - just #00FF00 for the value

I can see why you’d think that though, because this step comes right after learning rgb(x, x, x)! If you look again at the instructions, it does not mention adding hex anywhere - just the hash #

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