The item that should be on top should have a higher z index
Thus, a small icon will have a z-index of 2 and images will have a z-index of 1
Example:
.icon {
z-index: 2;
position: relative;
left: 30px;
top: 30px;
}
.images {
z-index: 1;
}
source
share