5 Types of CSS Positions For Better Layouts

In web development, CSS (Cascading Style Sheets) is used to style the elements of a website. To control the layout of elements on a web page, the position property of CSS is used. In this blog, we will learn about CSS positions and their types.

Let’s start!

CSS position Property

The CSS position property is used to control the position of an element on a webpage. It defines how an element should be positioned relative to its containing element or the viewport.

Following are the possible values for the position property:

static

This is the default value for all HTML elements’ positioning. In this positioning, elements are positioned in the normal flow of the document which means they are positioned one after another following the HTML structure. The positioning of elements in this mode is determined by their margins and paddings.

Applying the toprightbottom, or left properties to a statically positioned element will have no effect. z-index also does not apply to static elements.

Syntax:

For example:

CSS:

Output:

CSS Positions

In the above example, we have 3 boxes, all having the same height and width. The position: static; property is applied only to the second box. However, it doesn’t differ the layout of the second box with the other two boxes because static is the default value for all of the HTML elements.

relative

With position: relative elements follow their normal document flow but can be shifted from their original position. This can be achieved using the toprightbottom and left properties.

With this property, surrounding elements won’t be affected, but there will be space where the element would have been in the static position.

Syntax:

For example:

CSS:

Output:

CSS Positions

In the above example, the second box is shifted 20 pixels down (using the top property) and 50 pixels to the right (using the left property). The shifted box does not affect the position of surrounding elements (box 1 and box 3).

absolute

With position: absolute elements do not follow the normal flow of the document. The element is positioned relative to its closet positioned ancestor (an element with the positioning of relative, absolute, fixed, or sticky).

Syntax:

For example:

CSS:

Output:

CSS Positions

In the above example, the second box is inside a container. The position of the container is set to relative and the position of the second box is set to absolute and the box is shifted 30 pixels down (using the top property) and 50 pixels to the right (using the left property). The container is the ancestor of the second box.

Now what if there is no ancestor?

Then the element will be positioned relative to the viewport.

For example:

CSS:

Output:

CSS Positions

fixed

With position: fixed elements are positioned relative to the viewport and remain fixed even when the page is scrolled.

Syntax:

For example:

CSS:

Output:

CSS Positions

In the above example, the position of the second box will be fixed, even if you scroll down the page.

With this property, unlike position: relative; there will be no space where the element would have been in the static position.

sticky

With position: sticky elements are positioned based on the user’s scroll position. It behaves like a relative element until the user scrolls to a certain position, after which it becomes fixed relative to its containing element or the viewport.

Syntax:

For example:

CSS:

Output:

In the above example, the second box will behave like a relative element until it reaches the position top: 50px; on scrolling, then it will behave like a fixed element.

Conclusion

The position property, in CSS, determines the positioning of an element relative to its containing element or the viewport.

The position property has the following possible values:

static: This is the default positioning for all HTML elements. Elements are positioned in the normal flow of the document and follow the HTML structure.

relative: Elements with position: relative follow their normal document flow but can be shifted from their original position.

absolute: With position: absolute elements do not follow the normal flow of the document. The element is positioned relative to its closet positioned ancestor. If there is no ancestor, then the element will be positioned relative to the viewport.

fixed: Elements with position: fixed are positioned relative to the viewport and remain fixed even when the page is scrolled.

sticky: Elements with position: sticky are positioned based on the user’s scroll position.

By having a solid grasp of the position property we can attain the desired layouts and interactions in our web pages.

Thanks for reading.

Keep Coding!

For more content click here!

Check out CSS Scan, a browser extension that lets you extract the code for any CSS element of all the websites across the internet. Click here to get a 25% discount on CSS Scan.

2 thoughts on “5 Types of CSS Positions For Better Layouts”

  1. Hey, maybe you can put the key phrases in strong blocks, f.e. “z-index also does not apply to static elements”. Is very usual for all the new developers, my too, to set “z-index” to 100, 1000, 100000000… during the website construction.

    Reply

Leave a Comment