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

Tell us what’s happening:
Describe your issue in detail here.
In the container div, add two more div elements and give them each a class of marker.
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" class="marker" class="marker">
      <div class="marker">
        </div>
      </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; rv:109.0) Gecko/20100101 Firefox/115.0

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

Link to the challenge:

Hi, first of all it tells you that there is a div element with the class “container”. Inside it asks you to create two sister div elements (side by side), and that these two have the “marker” class.

<div> //parent element
      
      <div> //child element      
      </div>
      
      <div> //child element
      </div>

</div>

You may need to do “Ctrl + S” when you finish the exercise before running the tests.
I recommend that you restart the class to start with the initial code.
If you need more help, ask.

1 Like

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