CSS z-index Property

You are Here:

CSS z-index Property

CSS z-index property specifies the stack order of an element.

Elements with a larger z-index cover those with a smaller one.

Note: z-index only works on positioned elements (relative, absolute, fixed, or sticky).

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> img{ position: absolute; left: 0px; top: 0px; width: 200px; height: 150px; z-index: -1; } </style> </head> <body> <h1>CSS z-index Property</h1> <img src="car-left.png"> <p>This is a paragraph.</p> </body> </html>

Syntax

Using CSS

element{ z-index: 1; }

Using Javascript

object.style.zIndex="1"

Animatable

Yes, z-index property is animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS z-index property is auto.

Property Value

The following table provides a list of values for CSS z-index property.

ValueExplanation
autoThe box does not establish a new local stacking context. The stack level of the generated box in the current stacking context is the same as its parent's box.
NumberThis number is the stack level of the generated box in the current stacking context. Negative numbers are allowed.

Using JavaScript

In the following example, we will demonstrate how to change the CSS z-index property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> img{ position: absolute; left: 0px; top: 0px; width: 200px; height: 150px; z-index: -1; } </style> </head> <body> <h1>CSS z-index Property</h1> <img src="car-left.png"> <p>This is a paragraph.</p> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("img")[0]; function myFunction(){ x.style.zIndex = "1"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author