Detailed Explanation of CSS Position Property

There are two important types of properties you need to know about when positioning elements on a screen. The first one, position:, specifies the type of positioning method to be used for an element (i.e. static, relative, absolute or fixed).

The sec…


This content originally appeared on DEV Community and was authored by Linda

There are two important types of properties you need to know about when positioning elements on a screen. The first one, position:, specifies the type of positioning method to be used for an element (i.e. static, relative, absolute or fixed).

The second is a set of properties (top:, bottom:, right:, left:), used to specify the offset for the element. Top, bottom, right & left are calculated differently based on the positioning method used, and are ignored for position: static.

The position property in CSS defines how an element will be positioned on a page. The top, right, bottom, and left properties determine the final location of positioned elements.

Static Positioning

A static positioned element is always positioned according to the normal flow of the page. HTML elements are positioned static by default. Static positioned elements are not affected by the top, bottom, left, right, and z-index properties. In the example below, the green box "B" has a static position.

.static {
  position: static;
  /* This is often not needed since HTML elements have a static position by default */
}
Enter fullscreen mode Exit fullscreen mode

Static positioning

Relative Positioning

This acts similar to static positioning except that you can position it relative to itself using top, right, bottom, left.

Relative positioning tells the element to move relative to where it would have landed if it just had the default static positioning. If you give an element relative positioning and tell it to have a top of 40px, it moves down 40px from where it otherwise would have been.

.relative {
  position: relative;
  top: 40px;
  left: 30px;
}
Enter fullscreen mode Exit fullscreen mode

The CSS above changes the position of Box-B as shown below.

Relative positioning

Absolute Positioning

Absolute positioning tells the browser that the element being positioned should be removed from the normal flow of the document and will be placed in an exact location on the page based on the values specified in top, bottom, left & right. it won't affect how the elements before it or after it in the HTML are positioned on the Web page.

Absolute elements will by default head to the top-left of their closest parent that has a non-static position.

.absolute {
  position: absolute;
  top: 10px;
  right: 0px;
}
Enter fullscreen mode Exit fullscreen mode

Absolute positioning

Fixed Positioning

Fixed elements are positioned relative to the entire HTML element.

Fixed positioning is similar to absolute positioning, but, fixed positioning anchors an element to the browser window. If you scroll up and down, the fixed element stays put even as other elements scroll past.

.fixed {
  position: fixed;
  top: 20px;
  right: 30px;
}
Enter fullscreen mode Exit fullscreen mode

Fixed positioning

Sticky Positioning

Sticky position is a combination of both Relative and Fixed position into one. it starts out as relative but once it scrolls out of the page it becomes fixed position.

Note: Internet Explorer, Edge 15 and earlier versions do not support sticky positioning. Safari requires a -webkit- prefix (see example below). You must also specify at least one of top, right, bottom or left for sticky positioning to work.

.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 20px;
  right: 30px;
}
Enter fullscreen mode Exit fullscreen mode

Here is a codepen that includes the other positions including Sticky. Scroll down to see the Sticky position in action.

That's all folks, See you next week!


This content originally appeared on DEV Community and was authored by Linda


Print Share Comment Cite Upload Translate Updates
APA

Linda | Sciencx (2021-03-01T13:11:54+00:00) Detailed Explanation of CSS Position Property. Retrieved from https://www.scien.cx/2021/03/01/detailed-explanation-of-css-position-property/

MLA
" » Detailed Explanation of CSS Position Property." Linda | Sciencx - Monday March 1, 2021, https://www.scien.cx/2021/03/01/detailed-explanation-of-css-position-property/
HARVARD
Linda | Sciencx Monday March 1, 2021 » Detailed Explanation of CSS Position Property., viewed ,<https://www.scien.cx/2021/03/01/detailed-explanation-of-css-position-property/>
VANCOUVER
Linda | Sciencx - » Detailed Explanation of CSS Position Property. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/03/01/detailed-explanation-of-css-position-property/
CHICAGO
" » Detailed Explanation of CSS Position Property." Linda | Sciencx - Accessed . https://www.scien.cx/2021/03/01/detailed-explanation-of-css-position-property/
IEEE
" » Detailed Explanation of CSS Position Property." Linda | Sciencx [Online]. Available: https://www.scien.cx/2021/03/01/detailed-explanation-of-css-position-property/. [Accessed: ]
rf:citation
» Detailed Explanation of CSS Position Property | Linda | Sciencx | https://www.scien.cx/2021/03/01/detailed-explanation-of-css-position-property/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.