CSS_z-index

E_young_J·2024년 12월 7일

새싹일기🌱

목록 보기
14/28

Z-index

  • 겹치는 요소에 대한 순서를 결정
  • 숫자값 : 양수, 0 , 음수
  • 숫자값이 클수록 더 위에 쌓임 ( = 가장 앞에 놓인다 )


div {
  width: 100px;
  height: 100px;
  font-weight: bold;
  text-align: center;
  line-height: 100px;

  position: absolute;
}

.div1 {
  top: 100px;
  left: 100px;
  background-color: red;
  z-index: 8;
}

.div2 {
  top: 140px;
  left: 140px;
  background-color: orange;
  z-index: 6;
}

.div3 {
  top: 180px;
  left: 180px;
  background-color: yellow;
  z-index: 10;
}

.div4 {
  top: 220px;
  left: 220px;
  background-color: green;
  z-index: 4;
}

.div5 {
  top: 260px;
  left: 260px;
  background-color: blue;
  z-index: 12;
}

0개의 댓글