Menu
Box Model & Layout

CSS Z-index

Control the stack order of elements.

1Stacking Order

Elements with higher z-index cover those with lower z-index. Only works on positioned elements.

Example Code
.front {
  position: relative;
  z-index: 10;
}
.back {
  position: relative;
  z-index: 1;
}

Finished reading?

Mark this topic as complete to track progress.