From b643a826230494493283303b8578efbdd96f7857 Mon Sep 17 00:00:00 2001 From: Shraddha Arora <121857947+shraddhaarora@users.noreply.github.com> Date: Wed, 10 Dec 2025 19:39:56 +0530 Subject: [PATCH] fix(curriculum): fix typo in CSS review (#64457) Co-authored-by: Shraddha Arora --- .../english/blocks/review-css/671a9a0a140c2b9d6a75629f.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/review-css/671a9a0a140c2b9d6a75629f.md b/curriculum/challenges/english/blocks/review-css/671a9a0a140c2b9d6a75629f.md index 98dffb288cc..1b2381d0406 100644 --- a/curriculum/challenges/english/blocks/review-css/671a9a0a140c2b9d6a75629f.md +++ b/curriculum/challenges/english/blocks/review-css/671a9a0a140c2b9d6a75629f.md @@ -470,7 +470,7 @@ Using placeholder text is not great for accessibility. Too often, users confuse ## Fixed and Sticky Positioning - **Fixed Positioning**: When an element is positioned with `position: fixed`, it is removed from the normal document flow and placed relative to the viewport, meaning it stays in the same position even when the user scrolls. This is often used for elements like headers or navigation bars that need to remain visible at all times. -- **Sticky Positioning**: This type of positioning will act as an relative positioned element as you scroll down the page. If you specify a `top`, `left`, `right` or `bottom` property, then the element will stop acting like a relatively positioned element and start behaving like a fixed position element. +- **Sticky Positioning**: This type of positioning will act as a relative positioned element as you scroll down the page. If you specify a `top`, `left`, `right` or `bottom` property, then the element will stop acting like a relatively positioned element and start behaving like a fixed position element. ## Working With the `z-index` Property