Can't figure out step 16

I can’t get past step 16. I’m in the learn-css-colors-by-building-a-set-of-colored-markers.

  **Your 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" href="styles.css">
</head>
<body>
  <h1>CSS Color Markers</h1>
  <div class="container">
    <div class="marker">
    </div>
    <div class="marker">
    </div>
    <div class="marker">
    </div>
  </div>
</body>
</html>
/* file: styles.css */
h1 {
text-align: center;
}

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

  **Your browser information:**

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

Challenge: Step 16

Link to the challenge:

Add the class one to the first marker div element.

<div class="exampleClass1 exampleClass2"></div>

Then <div class="marker"></div> should be <div class="marker one"></div>

3 Likes

It looks like you didn’t write any code in this step. Can you specify the issue?

Hello! I’m new here, but I’m pretty sure, if you are helping somebody on this forum, it’s not the best practice to give direct solutions.

Thank you so much, can’t believe how easy this was. Not sure why I was overthinking this.

Agree, but I promise I tried my but off. I actually ended up going to Google and found something similar problem/answer.

You are right, but I explained it before giving the solution.

I hope s(he) understood the problem.

Sorry ^^

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