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 Advanced Sass Advanced Variables, Mixins, Functions, and Placeholders Advanced Mixins

2 Answers

Agreed. The CSS code in "Advanced Mixins" does not work in a browser:

.block { border: all solid #999999; }

("all" is an invalid value)

In consideration of the other question posted to this video, it appears "Advanced Mixins" is both in error and outdated.

Digital Team
PLUS
Digital Team
Courses Plus Student 11,346 Points

I would guess he meant to use $size, not $position in this bit of the rule:

border: $size $pattern $color;

With no arguments passed for these, they will always compile to:

border: 1px solid #999999;

With the $position argument passed as something other than the default (as in his example), you'd get:

border-left: 1px solid #999999;