develog

[css] z-index 본문

카테고리 없음

[css] z-index

냐옴 2021. 4. 26. 09:44
.content1 {
    z-index: 1;
}
.content2 {
    z-index: 2;
}
.content3 {
    z-index: 3;
}

.content1 {
    z-index: 3;
}
.content2 {
    z-index: 2;
}
.content3 {
    z-index: 1;
}

Comments