There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
Agree with a comment or answer? Like () to up-vote the contribution!
I’m wondering if this is an error in this lesson. In the instructions, two code blocks are shown, one in Sass and one in CSS. The latter is supposed to be a “translation” of the former, but I think it’s missing something.
No, because you are using .parent . child not only a .child. This what you wrote, you can use when you have .child only (without .parent) and then you have:
.parent {
color: blue;
}
.child { color: blue;
font-size: 12px;
}
In .parent .child
the .child inherits from the .parent,
so instructions from CodeCademy are correct.
There are some bugs in this course, i follow the instructions but it’s still wrong, when i ask the solution, the solution is identical than my response. Anyone know why ?
Hi i’m wondering if someone could let me know if the code below is correct use of scss nesting because when I run the code, an error message : “Did you nest and apply the properties to .slogan inside of banner?” comes up, and I thought I had…
The instructions from the beginning says this: Click “Run” to see your changes in the browser and inspect the output in main.css . Bur the output is the same from the beginning no changes, is there a bug here
As reported here two and a half years ago, there is a bug with exercise 1 where the nested scss solution, unless i am mistaken, should be:
.banner {
font-family: ‘Pacifico’, cursive;
height: 400px;
background-image: url(“lemonade.jpg”);
.slogan {
position: absolute;
border: 4px solid black;
top: 200px;
left: 25%;
width: 50%;
height: 200px;
text-align: center;
}
}
but the error ‘Did you nest and apply the properties to .slogan?’ is returned preventing progress. The solution code will apply the code for the entire lesson including all the following exercises, which corrodes the learning experience too severely.
I have been struggling with this for too long, can we identify and fix this bug please?
I am also having some kind of issue. I have copied the given ruleset for the .slogan, and the error message is telling me I am not using the 4px when I am??? Unless the pixel is effected by some rule set in any parent ruleset, which I do not think so becuase px is supposed to be fixed and independent. Am I wrong?
Getting the same error message…
expected div.slogan to have its border style equal to 4px solid black but got 3.99306px solid #000000
Need help and fix developers bug codecademy
This was originally mentioned YEARS ago this still isn’t fixed. Copy and paste I do as it says yet the solution is completely different not at all helpful codecademy please fix as we can’t progress until we copy and paste the solution.