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 (retired) Variables, Mixins, and Extending Selectors Extending Selectors

3 Answers

%super_link {
  font-weight: bold;
  color: red;           
}
Chris Shaw
Chris Shaw
26,676 Points

Giving out the answer probably isn't the best idea, it would be better for the person taking the challenge to read the SASS reference page as it explains what a placeholder selector is.

http://sass-lang.com/documentation/file.SASS_REFERENCE.html#placeholder_selectors_

thanks michael

Aurelian Spodarec
Aurelian Spodarec
10,801 Points

Chris, it's Sass, not SASS! :D

Chris Shaw
Chris Shaw
26,676 Points

haha, that's how it was typed two years ago. One of the great debates ?

Here:

%super_link { font-weight:bold; color:red; }

We use the % to define a placeholder, just like when we use # to define an ID!

Thanks & happy coding :)

%super_link { font-weight: bold; color: red; }