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 trialJacob Pacheco
Front End Web Development Techdegree Graduate 12,165 PointsNext, 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?
.roundy {
width:150px;
border-radius:50%;
}
.img-author {
@extend .roundy
%warning {
font-weight: bold;
color: red;
}
}
1 Answer
Rohald van Merode
Treehouse StaffHi 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 😄
.roundy {
width:150px;
border-radius:50%;
}
.img-author {
@extend .roundy
}
%warning {
font-weight: bold;
color: red;
}