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) Getting Started with Sass Nesting Selectors

Nested selectors in Sass

how do i make a tags within a p tag change their color

Brett Smith
Brett Smith
4,261 Points
p {
  .element 1 {
    color: pink
  }
  .element 2 {
     color: blue
  }
}

If list elements they way I have above then they will process to p .element1. If you use an ampersand (&.element1) they will process as p.element1. You can also use the ampersand with hovers

a {
  color: black;
  &:hover {
    color: blue;
  }
}

1 Answer

Brett Smith
Brett Smith
4,261 Points
p {
  .element 1 {
    color: pink
  }
  .element 2 {
     color: blue
  }
}

If list elements they way I have above then they will process to p .element1. If you use an ampersand (&.element1) they will process as p.element1. You can also use the ampersand with hovers

a {
  color: black;
  &:hover {
    color: blue;
  }
}