tammy
0
Q:

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.

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).
5
#nav {
  position: fixed;
  ...
  z-index: 2;
}
#main {
  position: absolute;
  ...
  z-index: 1;
}
0
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
1

  
    img
 {

     
 position: absolute;

     
 left: 0px;

     
 top: 0px;

     
 z-index: -1;

 }
  
 
0

New to Communities?

Join the community