λ°μν
μμμ μμΉλ₯Ό μ§μ νλ€ λ³΄λ©΄ λΆλμ΄νκ² λ μμκ° κ²Ήμ³μ§κ² λλ κ²½μ°κ° μμ΅λλ€.
μ΄λ μ΄λ μμκ° λ μλ‘ μ¬λΌμμΌ νλμ§λ μμλ€μ μμ μμμ κ·μΉμ λ°λΌ μμΉνκ² λ©λλ€.
μ΄κ²μ μ νλ κ²μ΄ λ°λ‘ z-indexμ μν μ λλ€.
μμ μμλ z-index μμ± κ°μ μ€μ νμ¬ λ°κΏ μ μλ€.
z-index μμ±
κΈ°λ³Έ κ° : auto
μμκ° κ²ΉμΉλ μμ(μμ μμ λλ stack order)λ₯Ό μ§μ νλ μμ±μ λλ€.
z-index: auto | number | initial | inherit;
< μμ± κ° >
auto | μμ μμλ₯Ό λΆλͺ¨μ λμΌνκ² μ€μ (κΈ°λ³Έκ°) |
number | ν΄λΉ μμΉλ‘ μμ μμλ₯Ό μ€μ (μμ νμ©) /zμΆμ μμλ₯Ό μ§μ / |
z-index: 1;β
- position κ°μ΄ staticμ΄ μλ κ²½μ° μ§μ κ°λ₯
- μμ κ°μ΄ μμ κ²½μ° μμ±μμ(μ½λμ μμ)μ λ°λΌ μμ
- λΆλͺ¨κ° z-index κ°μ΄ μμ κ²½μ° λΆλͺ¨ μμμλ§ μλ―Έμμ
- ν° κ°μ΄ κ°μ₯ μμͺ½(λ΄ μͺ½μΌλ‘ μ¬λΌμ¨λ€.)
- μμ μ¬μ© κ°λ₯
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>z-index</title>
<style>
.parent {
z-index: 10;
position: relative;
width: 300px;
height: 50px;
border: 2px solid #000;
background-color: #ccc;
}
.child {
z-index: 10;
position: absolute;
top: 10px;
right: 10px;
width: 100px;
height: 100px;
background-color: pink;
border: 2px solid red;
}
</style>
</head>
<body>
<div class="wrap">
<h1 class="practive_title">z-index μμ±</h1>
<div class="z_area">
<div class="parent" style="z-index:11">
position: relative;
<div class="child" style="right:20px;z-index:1000;">
position: absolute;
</div>
</div>
<div class="parent" style="">
position: relative;
<div class="child">
position: absolute;
</div>
</div>
</div>
</div>
</body>
</html>
See the Pen Untitled by HelloHailie (@hellohailie) on CodePen.
πλ€λ₯Έ μμ π
https://codepen.io/yongwon/pen/dXwyQq
λ°μν
'πLanguage > HTML & CSS' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
λ―Έλμ΄μΏΌλ¦¬μ λ°μν μΉ (0) | 2022.04.20 |
---|---|
HTML/CSS μ ν¨μ± κ²μ¬ μ¬μ΄νΈ (0) | 2022.04.19 |
css position & offset / static, relative, absolute, fixed / css 곡λΆν λ 보면 μ’μ μ¬μ΄νΈ (0) | 2022.04.19 |
css display floatκ³Ό clear (0) | 2022.04.19 |
css visibility μμ± (0) | 2022.04.19 |