CSSz-index Property
Example
Set the z-index for an image, so that it is displayed behind the text:
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}
More "Try it Yourself" examples below.
Definition and Usage
Thez-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, position: fixed, or position: sticky) and flex items (elements that are direct children ofdisplay:flex elements).
Note: If two positioned elements overlap without az-index specified, the element positioned last in the HTML code will be shown on top.
| Default value: | auto |
|---|---|
| Inherited: | no |
| Animatable: | yes.Read aboutanimatableTry it |
| Version: | CSS2 |
| JavaScript syntax: | object.style.zIndex="-1"Try it |
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| z-index | 1.0 | 4.0 | 3.0 | 1.0 | 4.0 |
CSS Syntax
Property Values
| Value | Description | Demo |
|---|---|---|
| auto | Sets the stack order equal to its parents. This is default | Demo ❯ |
| number | Sets the stack order of the element. Negative numbers are allowed | Demo ❯ |
| initial | Sets this property to its default value.Read aboutinitial | |
| inherit | Inherits this property from its parent element.Read aboutinherit |
More Examples
Example
Set the z-index for different boxes:
position: relative;
}
.box1 {
position: relative;
z-index: 1;
border: solid;
height: 100px;
margin: 50px;
}
.box2 {
position: absolute;
z-index: 2;
background: pink;
width: 20%;
left: 65%;
top: -25px;
height: 120px;
opacity: 0.9;
}
.box3 {
position: absolute;
z-index: 3;
background: cyan;
width: 70%;
left: 40px;
top: 60px;
}
Related Pages
CSS tutorial:CSS Positioning
HTML DOM reference:zIndex property

