How do I use the z-index properly?

z-index applies to positioned elements.

Positioned elements are defined as elements for which the position property has a value other than static.

static is the default value.

You haven’t applied a different position value to any of your elements.

You probably want position: relative;.

Leave a Comment