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 Improve Your Workflow with Sass Practice Extending a Selector

Jacob Pacheco
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jacob Pacheco
Front End Web Development Techdegree Graduate 12,165 Points

Next, create a placeholder called warning. Set its font-weight to bold and color to red.

I dont see what im missing in this code, can someone walk me though it?

style.scss
.roundy {
  width:150px;
  border-radius:50%;
}

.img-author {
  @extend .roundy

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

1 Answer

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

Hi Jacob Pacheco 👋

You currently got the warning place holder nested inside the .img-author selector. If you move it to right after the closing bracket your code should pass the test for this challenge 😄

style.scss
.roundy {
  width:150px;
  border-radius:50%;
}

.img-author {
  @extend .roundy
}

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