Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

anthony cummings
9,961 PointsSass value for margin at bottom of a .row element.
Finally, target .row and set its bottom margin to the gutter variable. This is for a SASS variable.
$color-brand: #6a5acd;
$gutter: 20px;
h1 {
color: $color-brand;
}
.col {
margin-left: $gutter;
}
.row (
margin-bottom: $gutter;
}
1 Answer

Jennifer Nordell
Treehouse TeacherHi there, Anthony! You're doing fine, but you have a typo which is generating a syntax error so the code can no longer be compiled.
You have entered:
.row (
margin-bottom: $gutter;
}
But the symbol after .row
should be an open curly brace whereas you have typed an open parenthesis. If I change the (
to a {
, your code passes with flying colors!
Happy coding!
Houssam Hammouda
Front End Web Development Techdegree Student 7,546 PointsHoussam Hammouda
Front End Web Development Techdegree Student 7,546 Points.row {margin-bottom: $gutter;} the Correct Answer my friend