what is z-index css code example
Example 1: css z index
img {
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}
The z-index property specifies the stack order of an element.
Example 2: css z-index
z-index: auto;
z-index: 0;
z-index: 3;
z-index: 289;
z-index: -1;
z-index: inherit;
z-index: initial;
z-index: unset;
Example 3: css z-index
#nav {
position: fixed;
...
z-index: 2;
}
#main {
position: absolute;
...
z-index: 1;
}
Example 4: what is a z index in css
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, position: fixed, or position: sticky).
Default value: auto