Learn CSS Colors by Building a Set of Colored Markers - Step 14

Tell us what’s happening:

its not accepting my answer even entering the correct one

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Colored Markers</title>
    <link rel="stylesheet" href="styles.css">
  </head>
  <body>
    <h1>CSS Color Markers</h1>

<!-- User Editable Region -->

    <div class="container">
      <div class="marker"></div>
      <div class="marker"></div>
    </div>

<!-- User Editable Region -->

  </body>
</html>
/* file: styles.css */
h1 {
  text-align: center;
}

.marker {
  width: 200px;
  height: 25px;
  background-color: red;
  margin: auto;
}

Your browser information:

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

Challenge Information:

Learn CSS Colors by Building a Set of Colored Markers - Step 14

is that two more divs than the amount at the start of the step?

what hint do you see when you run the tests?

Hi Buddy, See here this is the instructions showing up there.

In the container div, add two more div elements and give them each a class of marker.

And here is the code which is here.

 <div class="container">
      <div class="marker">
      </div>
    </div>

This is your code, now you need to find out what one thing you’re missing here.

Hope You Understand !!