CSS COURSE • LESSON
📚 CSS Z-index
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Z-index
Z-index controls the stacking order of elements.
.box {
position:absolute;
z-index:10;
}
Higher z-index values appear above lower values.