스택 컨텍스트 정보
목적
스택 컨텍스트
실례
CSS와 HTML은 이런 느낌(색과 위치의 기술은 할애)
<div class="squares">
<div class="square square-red">z-index:2</div>
<div class="square square-green">
z-index:3
<div class="square square-blue">z-index:1</div>
</div>
</div>
.squares {
position: relative;
}
.square {
position: absolute;
width: 10rem;
height: 10rem;
}
.square--red {
z-index: 2;
}
.square--blue {
z-index: 1;
}
.square--green {
z-index: 3;
}
· z-index가 1인 요소가 맨 위에 표시됨
· 이것은 z-index가 3인 부모 요소가 기점이기 때문에
· 각 요소의 중첩 순서는 아래 표와 같습니다.
칼라
z-index
스택 컨텍스트
오버랩 순서
레드
2
루트
root→빨강(z-index:2)
블루
1
녹색
녹색(z-index:3)→파랑(z-index:1)
녹색
3
루트
root→녹색(z-index:3)
파란색은 z-index : 3의 녹색을 기점으로하므로 맨 위에 표시됩니다.
요약
z-index를 사용할 때 시작점에주의하십시오.
Reference
이 문제에 관하여(스택 컨텍스트 정보), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/senu_web/items/59570095d8bc38291240텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)