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 Sass Basics Getting Started with Sass Declare and Use Variables

Sass 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.

style.scss
$color-brand: #6a5acd;
$gutter: 20px;
h1 {

  color: $color-brand;
}

.col {

margin-left: $gutter;

}

.row (

  margin-bottom: $gutter;

}

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi 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! :sparkles:

.row {margin-bottom: $gutter;} the Correct Answer my friend