Use @each to Map Over Items in a List (getting it wrong)

Tell us what’s happening:

  **Your code so far**

<style type='text/sass'>
$colors:(color1:blue,color2: black,color3: red);
@each $key, $color in $colors {
  .#{$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/89.0.4389.114 Safari/537.36.

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

Link to the challenge:

The type attribute in your style tag doesn’t seem to match the original code of the challenge.

There is also an inconsequential mistake on semi-colon placement within your @each loop. The code still works either way, but the semi-colon should be within the closing curly bracket.

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