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

Tell us what’s happening:
Describe your issue in detail here.
They said I need a second opening<div tag in my second div when there already is 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 class="marker">
    </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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Safari/605.1.15

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

Link to the challenge:

You have not closed the opening tag of the .container div with the >.


You also need to close the .container with a closing tag.

im confused this step doest have .container

If you look closely in your code you have made changes to a div which has container as its class. This is causing some errors in your code.

I would recommend you to click on the Restart Step and add the two divs with the class as marker.

ok ive re started it do I still put the two divs in the same place as before or was that wrong too?

The marker divs should be inside the .container div.

If you still haven’t solved the problem, please post your updated code here.

ok still not sure where the error is wit the .container

You have to add two div elements with the class marker inside the .container element.

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