Be the first user to complete this post

  • 0
Add to List

position: relative

Overview

To design and understand the page layouts, we need to understand the position property in css. An element is said to be positioned, when its position attribute is set.
 position : relative || absolute || fixed || sticky (experimental);
The default value for the position attribute is static.
This post is one of the posts in the series of posts to understand the position attribute in css. Make sure to read all of them to fully understand the position attribute.
An element on DOM can be categorized in one of the following categories :
  • position : static || relative - element is in the normal document flow.
  • position : absolute || fixed - element is absolutely positioned.
  • float : left || right - element is floating. Learn More about floats.

Getting started

If we do not apply any position to the squares then they are rendered in the normal document flow, meaning the green square is rendered to the next available space after the red square. In the below pen, we have three colored square div elements, which have the default (static) position. Hence, they are rendered in the normal document flow. [codepen_embed height="268" theme_id="0" slug_hash="bErjVW" default_tab="result" user="kavitshah8"]See the Pen relative-1 by Kavit Shah (@kavitshah8) on CodePen.[/codepen_embed]
If will apply, the position: relative to the red square, then it will be a positioned element. It will allow us to offset the element. The below pen offsets the red square from top by 30px and left by 70px; [codepen_embed height="268" theme_id="0" slug_hash="OMjwmp" default_tab="result" user="kavitshah8"]See the Pen relative-2 by Kavit Shah (@kavitshah8) on CodePen.[/codepen_embed]

Notes on offset

  • Positive offset value moves an element away from the edge, applying 'left: 20px' moves an element 20px away from the edge towards right and vice versa.
  • Offset does not remove an element from its normal document flow, which is very different than the floated element.
  • In the above example, offsetting the red square did not remove it from its original place. Hence, the green square could not occupy its position.
  • But if we increase the dimensions of the red square then we can see the position of the green square changes as shown in the below pen.
[codepen_embed height="268" theme_id="0" slug_hash="obePao" default_tab="result" user="kavitshah8"]See the Pen relative-3 by Kavit Shah (@kavitshah8) on CodePen.[/codepen_embed]
Check out James Williamson's excellent tutorial on Relative Positioning !
[youtube https://www.youtube.com/watch?v=VsWwFk4ilgM]

Most common use cases for position:relative

  • To tweak the layouts. For example, to offset an element.
  • It's also used to apply position to container elements which allows us to apply position: absolute to the child elements.

Further reading




Also Read:

  1. css - vertically align text
  2. css specificity interview question
  3. window vs document
  4. Error: can not find module 'underscore'
  5. Configuring sass with your nodejs applications