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

Using @mixin instead of @extend?

Based on the video example, is it the same if I were to use @mixin instead:

@mixin button {
  color: #fff;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.75em 1.5em;
  border-radius: 0.35em;
  @content;
}

.btn {
  @include button;
}

.btn-callout {
  @include button {
  font-size: 1.1em;
  background-color: black;
  }
}

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,253 Points

Yes, this looks like more of a reason to use extend. So what I tend to do is have a group of placeholder selector style rules (%) for placeholder selector in a "partial" sass file called "utilities" or something like that and then call that placeholder selector with @extend

So something like this.

%button {

 //styles
}

.btn {
@extend  button
}

Noted. Thanks for the input!