Why it not work

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

  **Your code so far**

<style type='text/sass'>

@each $color in blue, black, red {
  .#{$color}-bg {background-color: $color;}
}

div {
  height: 200px;
  width: 200px;
}

</style>

<div class="blue-bg"></div>
<div class="black-bg"></div>
<div class="red-bg"></div>
  **Your browser information:**

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

Challenge: Use @each to Map Over Items in a List

Link to the challenge:

Your CSS is correct. I’m guessing you have some sort of browser extension installed that is preventing the test from working correctly, such as a dark mode extension. Disable these extensions and then the tests should pass.

Your code is correct, try other browsers, some of them doesn’t work normally with CSS/HTML.

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