From 2a7f2cebe3617c9c8a4c539a72674c684d71f938 Mon Sep 17 00:00:00 2001 From: Christine Belzie Date: Fri, 28 Jul 2023 16:14:16 -0400 Subject: [PATCH] fix: I went back to the original sentence --- 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 c3c949605cc588a..8ee4c9e6374cad2 100644 --- a/files/en-us/web/css/position/index.md +++ b/files/en-us/web/css/position/index.md @@ -40,7 +40,7 @@ position: unset; - `absolute` - - : 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 containing block [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 closest positioned ancestor (if any) or to the initial containing block [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`. This value creates a new [stacking context](/en-US/docs/Web/CSS/CSS_positioned_layout/Understanding_z-index/Stacking_context) when the value of `z-index` is not `auto`. The margins of absolutely positioned boxes do not [collapse](/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing) with other margins.