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 Add Reusable Logic to Your Sass Advanced Mixins Challenge

cody conner
seal-mask
.a{fill-rule:evenodd;}techdegree
cody conner
Front End Web Development Techdegree Student 4,447 Points

stuck on a challenge

Switch the order of the square arguments. Be sure to specify the variable for each argument.

Bummer: The mixin should take 2 parameters, '$size' and '$color'.
style.scss ā€‹

@mixin square($color:black, $size) { width: $size; height: $size; border: 1px solid $color; } ā€‹ .box { @include square(50px, red); }

style.scss
@mixin square($color:black, $size) {
  width: $size;
  height: $size;
  border: 1px solid $color;
}

.box {
  @include square(50px, red);
}

4 Answers

Rohald van Merode
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Rohald van Merode
Treehouse Staff

Hey cody conner šŸ‘‹

Looks like you've currently switched the order of the parameters in the mixin itself šŸ™‚

You'll instead want to switch the order of the arguments where the mixin is being called. After changing the order also make sure to specify the variable names for those arguments. Without specifying those the red value will be used for the $size and the 50px value for the $color, as that is the order that was initially defined šŸ™‚

@mixin square($size, $color: black) {
  width: $size;
  height: $size;
  border: 1px solid $color;
}

.box {
  @include square($color: red, $size: 50px);
}

Hope this helps! šŸ˜ƒ

cody conner
seal-mask
.a{fill-rule:evenodd;}techdegree
cody conner
Front End Web Development Techdegree Student 4,447 Points

im still getting this

Bummer: The mixin should take 2 parameters, '$size' and '$color'.

i appreciate your help.

this for some reason just catching me

Which step of the challenge is this?

It wants you to switch the order of the arguments being passed in the style rule and for you to define which is which by adding the argument name. So I believe it should look like this:

@mixin square($size, $color:black) {
  width: $size;
  height: $size;
  border: 1px solid $color;
}

.box {
  @include square($color:red, $size:50px);
}