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

**
I need a bit more corrections around the div property mostly please

Your code so far

/* file: index.Ext.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>
    <div class="container">
      <div class="marker red">
        <div class="cap"></div>
        <div class="sleeve"></div>
      </div>
      <div class="marker green"><div class="marker red"></div>
      </div>
      <div class="marker blue"><div class="marker red"></div>
      </div>
    </div>
  </body>
</html>
/* file: styles.Ext.css */
<!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>
    <div class="container">
      <div class="marker red">
        <div class="cap"></div>
        <div class="sleeve"></div>
      </div>
      <div class="marker green"><div class="marker red"></div>
      </div>
      <div class="marker blue"><div class="marker red"></div>
      </div>
    </div>
  </body>
</html>

Your mobile information:

SM-A505F - Android 9 - Android SDK 28

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

Link to the challenge:

You modified your code. Reset your challenge and copy and paste only sleeve and cap class div within green and blue markers div.
@WAVVORIGINAL

As suggested, if you reset your code, you should have this starter code for this step:

<div class="marker red">
  <div class="cap"></div>
  <div class="sleeve"></div>
</div>
<div class="marker green">
</div>
<div class="marker blue">
</div>

All you need to do then is copy the .cap and .sleeve div elements and paste them inside both of your other two .marker div elements.

1 Like

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