Course Content
Advanced CSS Techniques
Advanced CSS Techniques
1. Getting Started with Advanced CSS
2. Mastering CSS Positioning
Understanding CSS PositioningRelative Positioning ExplainedChallenge: Apply Relative PositioningAbsolute Positioning in CSSChallenge: Implement Absolute PositioningFixed Positioning for Sticky UI ElementsChallenge: Work with Fixed PositioningSticky Positioning for Dynamic LayoutsChallenge: Master Sticky PositioningManaging the Stacking Order of ElementsChallenge: Control Z-Index and Overlapping ElementHandling Content Overflow in CSS
5. Transforming Elements with CSS
7. CSS Preprocessors and Sass
Challenge: Master Sticky Positioning
Task
Create a blog layout for animal articles, ensuring that the corresponding animal photo is always visible while the user reads the article. When the user starts reading about another animal, offer the next animal photo. Steps:
- Apply
sticky
positioning to the element with the class nameillustration
. - Specify the position on the page where the element should become sticky.
index.html
index.css
- To make the animal illustrations stick to the top of the viewport while the user reads the article, apply the
sticky
positioning to the element with the class nameillustration
. - Set the
top
property to0
to specify that the element should stick at the top of the viewport.
index.html
index.css
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 9