Hello guys I'm trying to finish the code but I'm stuck here at the 49 step I do what it says but nothing

Tell us what’s happening:
Describe your issue in detail here.

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

.container {
background-color: rgb(255, 255, 255);
padding: 10px 0;
}

.marker {
width: 200px;
height: 25px;
margin: 10px auto;
}
.red {
background: rgb(255, 0, 0);
}

.green {
background-color: #007F00;
}

.blue {
background-color: hsl(240, 100%, 50%);
}

h1 {
text-align: center;
}

.container {
background-color: rgb(255, 255, 255);
padding: 10px 0;
}

.marker {
width: 200px;
height: 25px;
margin: 10px auto;
}
.red {
background: rgb(255, 0, 0);
}

.green {
background-color: #007F00;
}

.blue {
background-color: hsl(240, 100%, 50%);
}

  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15

Challenge: Step 49

Link to the challenge:

1 Like

it doesn’t accept this I do what it says? help pls

welcome to fcc forum :slight_smile:

try restarting this step, cause i tried and it passed for me!!

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

i wouldn’t have, i only did so, because i used basically same ‘code’ as this user posted!!

i agree, working solution should not be posted!!

1 Like

I reverted your post back to the screenshot.

In the case of @arton.memedi it is probably an issue with their browser or browser extension.

well thank you but I tried everything and didn’t worked :worried: same happened also with the step 60 and 66 you have to do the same thing as this step 49 and I can’t pass it.

how to solve this with the browser extension?
what to do I didn’t tried this one.

Have you disabled all browser extensions?

It is best to do these challenges without browsers extensions turned on because it can interfere with the test suite.

I was testing your code on google chrome without extensions and it worked for me.

Have you tried other browsers?

have you tried with ‘restart step’ and then do it as i have shown in my snapshot?

yes it worked i removed all my extensions and it worked thank you @jwilkins.oboe i owe you a coffee :slightly_smiling_face:

2 Likes

I’ve had the same problem. Didn’t work at all with Safari, but smoothly with Chrome.

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