z-index by default code example
Example 1: default z index
the default z-index is 0.
Example 2: css z index
img {
position: absolute;
/*position: relative;
//position: fixed;*/
left: 0px;
top: 0px;
z-index: -1;
}
The z-index property specifies the stack order of an element.