From 4253659c02fcc4c9133f80e7a37f827c37b97045 Mon Sep 17 00:00:00 2001 From: Christine Belzie <105683440+CBID2@users.noreply.github.com> Date: Thu, 3 Aug 2023 02:12:55 -0400 Subject: [PATCH] fix: revise information about absolute and fixed (#28226) * fix: revise information about absolute and fixed * fix: revise wording in the sentence * fix: I went back to the original sentence. * Update index.md * fix: I went back to the original sentence * link fixes --------- Co-authored-by: Chris Mills --- files/en-us/web/css/position/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/css/position/index.md b/files/en-us/web/css/position/index.md index 6438e536b3af5ec..421c8bfddfcfbc5 100644 --- a/files/en-us/web/css/position/index.md +++ b/files/en-us/web/css/position/index.md @@ -46,7 +46,7 @@ position: unset; - `fixed` - - : The element is removed from the normal document flow, and no space is created for the element in the page layout. The element is positioned relative to its initial [containing block](/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block). Its final position is determined by the values of `top`, `right`, `bottom`, and `left`. + - : The element is removed from the normal document flow, and no space is created for the element in the page layout. The element is positioned relative to its initial [containing block](/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block), which is the viewport in the case of visual media. Its final position is determined by the values of `top`, `right`, `bottom`, and `left`. This value always creates a new [stacking context](/en-US/docs/Web/CSS/CSS_positioned_layout/Understanding_z-index/Stacking_context). In printed documents, the element is placed in the same position on _every page_.