Recall & Review
beginner
What is the main purpose of a print stylesheet?
A print stylesheet controls how a webpage looks when printed, making it clean and readable on paper by hiding unnecessary elements and adjusting layout.
Click to reveal answer
beginner
How do you target print media in Sass?
Use
@media print { ... } to write styles that only apply when printing.Click to reveal answer
intermediate
Why organize print styles separately in Sass files?
Separating print styles keeps code clean and easier to maintain. It helps quickly find and update print-specific rules without mixing with screen styles.
Click to reveal answer
beginner
Name two common elements to hide in print styles.
Navigation menus and interactive elements like buttons are often hidden in print styles to avoid clutter on paper.
Click to reveal answer
intermediate
How can Sass partials help in print stylesheet organization?
Sass partials let you split print styles into smaller files (e.g., _print-header.scss, _print-content.scss) and import them into a main print stylesheet for better structure.Click to reveal answer
Which Sass syntax correctly targets print media?
✗ Incorrect
Use
@media print to apply styles only when printing.What is a good practice for organizing print styles in Sass?
✗ Incorrect
Using separate partials keeps print styles organized and easier to maintain.
Which element is commonly hidden in print styles?
✗ Incorrect
Navigation menus are usually hidden to reduce clutter on printed pages.
How do print styles improve user experience?
✗ Incorrect
Print styles simplify layout and hide unnecessary elements for better readability on paper.
What Sass feature helps combine multiple print style files?
✗ Incorrect
Partials and
@import let you split and combine print styles neatly.Explain how you would organize print styles in a Sass project for easy maintenance.
Think about separating concerns and using Sass features like partials and media queries.
You got /5 concepts.
Describe why print styles are important and what common changes they include compared to screen styles.
Consider how a webpage looks different on paper versus on a screen.
You got /5 concepts.