Site icon DW Faisalabad

CSS z-index Property

Set the z-index for an image:

img {
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}

Try it Yourself »


Definition and Usage

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

An element with greater stack order is always in front of an element with a lower stack order.

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

Default value: auto
Inherited: no
Animatable: yes. Read about animatable – Try it
Version: CSS2
JavaScript syntax: object.style.zIndex=”-1″Try it

CSS Syntax

z-index: auto|number|initial|inherit;

Property Values

Value Description
auto Sets the stack order equal to its parents. This is default
number Sets the stack order of the element. Negative numbers are allowed
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit
Exit mobile version