z-index은 position으로 지정한 요소를 원하는 위치로 이동시키고 이동하였을 때 주변에 있는 다른 요소와 겹칠 경우에 원하는 요소를 위로 쌓거나 아래로 쌓기 위해 순번을 지정해는 속성
숫자가 높을수록 해당하는 요소를 위로 쌓고 작을수록 아래쪽으로 쌓음
숫자가 높을수록 해당하는 요소를 위로 쌓고 작을수록 아래쪽으로 쌓음
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!
DOCTYPE
html>
<html lang
=
"kr"
>
<head>
<meta charset
=
"utf-8"
>
<title>
키보드와 하루
</title>
</head>
<style>
div
{
width
:
100px
;
height
:
100px
;
}
</style>
<body>
<div style
='
position
:
relative
;
'
>
1
<div style
='
position
:
absolute
;
background
:
blue
;
z-index
:
3
;
'
>
</div>
2
<div style
='
position
:
absolute
;
background
:
red
;
left
:
40
;
z-index
:
2
;
'
>
</div>
3
<div style
='
position
:
absolute
;
background
:
yellow
;
left
:
80
;
z-index
:
1
;
'
>
</div>
</div>
</body>
</html>
|
[css3] column-count - 단 개수 고정 (0) | 2021.05.17 |
---|---|
[css3] column-width - 단 너비 고정 후 다단 생성 (0) | 2021.05.14 |
[css3] visibility - 보이거나 숨기기 (0) | 2021.05.12 |
[css3] position - 배치 방법 지정 (0) | 2021.05.11 |
[css3] float - 왼쪽,오른쪽 배치 (0) | 2021.05.07 |