CSS Z-index
CSS z-index concept is based on the stack order of a box and its position value might be one of the absolute, fixed, or relative. Basically, it comes into action when elements also occupy the z-axis. An element having a higher z-index value always lies on another box having a lower z-index value. Z-index value might be an integer value.
Statement
.box{position: relative;left: 80px;top: -150px;z-index: -2;}
Note:The z-index value is used to decide element position inside the stack. The element having a higher z-index value will be top of the stack while the element having a lower z-index value will be bottom of the stack.