FAQ: Your First Sass Stylesheet - Nesting Selectors

This community-built FAQ covers the “Nesting Selectors” exercise from the lesson “Your First Sass Stylesheet”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn Sass

FAQs on the exercise Nesting Selectors

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 (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 (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

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.

First, this block is shown:

.parent {
  color: blue;
  .child {
    font-size: 12px;
  }
}

Then the instructions say “The above SCSS would compile to the following, equivalent CSS:” and the following block is shown:

.parent {
  color: blue;
}

.parent .child {
    font-size: 12px;
}

But shouldn’t the second block actually look like this?:

.parent {
  color: blue;
}

.parent .child {
    **color: blue;**
    font-size: 12px;
}

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.

1 Like

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 ?

1 Like

That sounds like a bug… you may just want to report it and move on.

oh ok, i already reported it, thanks you steven for your help (and your personal webpage is nice:grin:)

2 Likes

Awesome! That happens to me a fair bit too…

And yes, my personal website is muy bonita

2 Likes

I am getting the same bug 9 months later! I have reported it but terrible learning experience if you have to get the solution for the thing to work!

3 Likes

I’m having the same issue too!

1 Like

Shouldn’t I see some change in my css file after finishing the excercise? It’s the same as in the beginning.
I’ll leave the example

This is the sass code

@import url(https://fonts.googleapis.com/css?family=Pacifico);
//Add variables here:

h1 {
  font-family: Roboto, sans-serif;
  text-align: center;
}

.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;
  span {
  font-size: 24px;
  line-height: 200px;}
  }
}

.container {
  text-align: center;
  font-family: 'Pacifico', cursive;
  .icon {
  display: inline-block;
  margin: 2%;
  border: 4px solid black;
  font-size: 32px;}
}

This is the css code

@import url(https://fonts.googleapis.com/css?family=Pacifico);
h1 {
  font-family: Roboto, sans-serif;
  text-align: center;
}

.banner {
  font-family: 'Pacifico', cursive;
  height: 400px;
  background-image: url("lemonade.jpg");
}

.container {
  text-align: center;
  font-family: 'Pacifico', cursive;
}
2 Likes

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…

.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;

}

}

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

1 Like

I’m facing this issue too. It’s annoying.

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?

.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;
  }
}

The error

expected div.slogan to have its border style equal to 4px solid black but got 3.98438px solid #000000

1 Like

Getting the same error message… You can use the solution to go to the next, but the solution is different from what it should be.

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.

I had the same issue with the border-width. I switched to a different browser and was able to run the code and continue on with out any problems.

Google Chrome seems to have an issue with this exercise. Safari worked as expected.