Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Bhavesh Nayi
Bhavesh Nayi
4,011 Points

code challenge - @for and @each

http://teamtreehouse.com/library/sass-basics/advanced-sass-concepts/creating-loops-with-for-and-each-2

Hi,

I completed the first challenge, however when I try the second it states the first is broken. Please help, code is below:

@for $i from 1 through 3 {
    .item_#{$i} {
    width: $i * 100px;
  }
}

@each $color in red, blue, green {
    .#{$color}_box {
    background: .#{$color}
  }
 }

2 Answers

Bhavesh Nayi
Bhavesh Nayi
4,011 Points

ah worked it out... don't need the background value in braces :)

Can't get it to work, even with Bhavesh's follow up.