Recall & Review
beginner
What is a placeholder selector in Sass?
A placeholder selector in Sass is a special selector that starts with
%. It is not rendered directly in the CSS but can be extended by other selectors to share styles.Click to reveal answer
beginner
How do you define a placeholder selector in Sass?
You define a placeholder selector by starting the selector name with
%, for example: %button-style { color: blue; }.Click to reveal answer
intermediate
What is the main benefit of using placeholder selectors with
% in Sass?They help avoid repeating CSS code by allowing multiple selectors to share the same styles without generating extra CSS for the placeholder itself.
Click to reveal answer
beginner
How do you use a placeholder selector in another selector?
You use the
@extend directive to include the styles from a placeholder selector. For example: .btn {@extend %button-style;}.Click to reveal answer
intermediate
What happens if you define a placeholder selector but never extend it?
No CSS is generated for that placeholder selector because it only outputs styles when extended by other selectors.
Click to reveal answer
What symbol starts a placeholder selector in Sass?
✗ Incorrect
Placeholder selectors always start with the percent sign
% in Sass.Which Sass directive is used to apply styles from a placeholder selector?
✗ Incorrect
The
@extend directive is used to inherit styles from a placeholder selector.If a placeholder selector is not extended, what CSS is generated?
✗ Incorrect
Placeholder selectors only generate CSS when extended; otherwise, no CSS is output.
Which of these is a valid placeholder selector?
✗ Incorrect
Placeholder selectors start with
%, so %nav-item is valid.Why use placeholder selectors instead of regular classes?
✗ Incorrect
Placeholder selectors help reuse styles without generating extra CSS selectors.
Explain how placeholder selectors with
% work in Sass and why they are useful.Think about sharing styles without extra CSS code.
You got /4 concepts.
Describe the difference between a placeholder selector and a regular class selector in Sass.
Focus on CSS output and reuse.
You got /4 concepts.