Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Nested Selectors 7:23
- Use the Ampersand to Reference Parent Selectors 6:57
- Write Nested Selectors 4 objectives
- Introducing Mixins 6:53
- Pass Content Blocks to Mixins 4:42
- Write a Mixin 4 objectives
- Extend the Properties of Selectors 4:05
- Extend Placeholder Selectors 5:04
- Practice Extending a Selector 3 objectives
- Using Comments 3:40
- Sass Workflow Review 7 questions

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
Learn how nested selectors make writing descendant and complex selectors fast and simple.
Sass also provides a shorthand for writing properties using CSS namespaces:
.button {
text: {
align: center;
decoration: none;
transform: uppercase;
}
}
Compiles to:
.button {
text-align: center;
text-decoration: none;
text-transform: uppercase;
}
Resources
Videos
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
serenahendrickson
Front End Web Development Techdegree Student 11,341 PointsNot transferring the change between style.scss and style.css
2 Answers
-
vamosrope14
14,932 Points1 Answer
-
vamosrope14
14,932 Points2 Answers
-
vamosrope14
14,932 Points1 Answer
-
vamosrope14
14,932 Points1 Answer
-
Jeffrey Collazo
34,492 Points1 Answer
-
PLUS
robertmills2
Courses Plus Student 14,965 Points2 Answers
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up