z-index with position in CSS

October 26, 2014

Set the position property of an element for its z-index to work:

css
.el {
    position: relative;
    z-index: 100;
}