9999
-
z-index: 9999로도 해결이 안되는 이유코드잇 2023. 12. 3. 14:09
z-index가 내맘대로 안될 때 먼저 z-index를 사용하기 위해선 position 속성을 부여해줘야 한다. (static 제외) .red { position: relative; z-index: 1; } z-index: 9999로도 해결이 안 되는 이유 .red { background-color: red; position: absolute; width: 100px; height: 100px; top: 0px; left: 0px; z-index: 1; } .green { background-color: green; position: absolute; width: 50px; height: 50px; top: 25px; left: 25px; z-index: 3; } .blue { background-col..