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 trialanthony 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