From 154b6950ab53bc209ea49d3baaca2ad619c0e504 Mon Sep 17 00:00:00 2001 From: Kaitlyn <44345114+Xenulat3r@users.noreply.github.com> Date: Mon, 10 Dec 2018 22:05:47 -0600 Subject: [PATCH] Position property descriptions (#25504) --- guide/english/css/css-position/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/guide/english/css/css-position/index.md b/guide/english/css/css-position/index.md index 7097bf2a12..98d4aae563 100644 --- a/guide/english/css/css-position/index.md +++ b/guide/english/css/css-position/index.md @@ -16,6 +16,11 @@ Elements can be literally positioned by getting `top`, `right`, `bottom` and `le It's important to know that an element with `position:relative` property will still preserve the space it takes at its original position when it is moved, however, an element with `position:absolute` property will not. +* Static: Is always positioned in within the natural flow of the page. +* Relative: Is moved relative from its normal position. +* Sticky: Is placed based on the scroll, and jumps from it's relative position to it's scroll position when it is scrolled past in a document. +* Fixed: Removed from the flow of the document, and is fixed to a point in the viewpoint, regardless of scrolling. +* Absolute: Removed from the flow of the document. ### More Information: MDN Documentation: MDN