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 trialJoshua szkodlarski
8,604 PointsUse an @each loop to set the variable $color to the color red, then blue, and finally green. Use the loop to create thre
i dont know what to do
<!DOCTYPE html>
<html>
<head>
<title>Sass Basics - Code Challenge</title>
<link rel="stylesheet" type="text/css" href="page-style.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="item_1 red_box"></div>
<div class="item_2 blue_box"></div>
<div class="item_3 green_box"></div>
</body>
</html>
@for $i from 1 through 3 { .item_#{$i} { width:$i*100px; }
}
.for-1 {
width: 61px;
}
.for-2 {
width: 62px;
}
.for-3 {
width: 63px;
}
1 Answer
Tobias Helmrich
31,603 PointsHey there,
you have to use an each loop and loop through a list containing the three specified colors (red, blue and green), so basically it's just three comma-separated values, and save the value inside of a $color variable.
Inside of the each loop you have to select a class that's called red/blue/green_box depending on the value of $color in the iteration. Don't forget to interpolate the variable when you select the class.
Inside of the rule you now just have to assign the current value of the $color variable to the background-color property of the corresponding class.
Here is the working code for the second task.
@each $color in red, blue, green {
.#{$color}_box {
background-color: $color;
}
}
I hope that helps, good luck! :)