position(relative & absolute)
๐ position
position์ HTML ์์๊ฐ ๋ฐฐ์น๋๋ ๋ฐฉ์์ ๋ฐฉ๋ฒ์ ์ ์ํฉ๋๋ค.
๐ position์ ์์ฑ๊ฐ
1. static: ๊ธฐ๋ณธ๊ฐ
position
์ด ๊ธฐ๋ณธ ์์ฑ์ผ ๋๋ ์์น ์กฐ์ ์ด ๋ถ๊ฐ๋ฅํ ๊ธฐ๋ณธ HTML ์์์ ์ํ๊ฐ ๋ฉ๋๋ค.
๋ฐ๋ผ์ top
, left
, bottom
right
๋ฅผ ์ฌ์ฉํ ์ ์์ต๋๋ค.
.item2 {
position: static;
top: 30px; // ์๋ฏธ์๋ ์ฝ๋
left: 30px; // ์๋ฏธ์๋ ์ฝ๋
}
2. relative: ๊ธฐ๋ณธ๊ฐ
: ์๋ ์๋ ์๋ฆฌ๋ฅผ ๊ธฐ์ค์ผ๋ก ์์์ ์์น๋ฅผ ์กฐ์ ํ ์ ์์ต๋๋ค.
div {
width: 100px;
height: 100px;
background-color: red;
position: relative;
top: 100px;
left: 100px; // ์์์๋ถํฐ 100px, ์ผ์ชฝ์์๋ถํฐ 100px์ด๋
}
์๋ ์์น๋ณด๋ค ์์์๋ถํฐ 100px, ์ผ์ชฝ์์๋ถํฐ 100px ๋จ์ด์ง๋ค.
3. absolute
: ์์๋ฅผ ์ผ๋ฐ์ ์ธ ๋ฌธ์์ ํ๋ฆ์์ ์ ๊ฑฐํ๊ณ ,
๋์์ ๋ถ๋ชจ ์์ ์ค relative
๊ฐ ์ ์ฉ๋ ์์๊ฐ ์๋ค๋ฉด ํด๋น ์์น๋ฅผ ์ ๋ ์ขํ์ ๊ธฐ์ค์ผ๋ก ์ ํฉ๋๋ค.
relative
๊ฐ ์ ์ฉ๋ ์์๊ฐ ์๋ค๋ฉด bodyํ๊ทธ๋ฅผ ๊ธฐ์ค์ผ๋ก ์ ๋ ์์น๋ฅผ ์ ํฉ๋๋ค.
div {
width: 100px;
height: 100px;
background-color: red;
position: absolute;
top: 100px;
left: 100px;
}
4. fixed
: ์คํฌ๋กค๊ณผ ๋ฌด๊ดํ๊ฒ ๋ทฐํฌํธ๋ฅผ ๊ธฐ์ค์ผ๋ก ์์์ ์์น๋ฅผ ์ค์ ํฉ๋๋ค.
์คํฌ๋กค์ ๋ด๋ ค๋ ํ๋ฉด์ ๊ณ ์ ๋์ด ์์น๊ฐ ๋ณํ์ง ์์ต๋๋ค.
.item2 {
position: fixed;
top: 30px;
left: 30px;
}
4. sticky
: ์์์ ์๋ ์์น์ ์๋ค๊ฐ ์คํฌ๋กค์ด ๋ด๋ ค๊ฐ๋ฉด ์ง์ ๋ ์ขํ์ ๊ณ ์ ๋ฉ๋๋ค.
๊ธฐ์ค์ ๋ถ๋ชจ ์์์ ์ขํ์ ๋๋ค.
์คํฌ๋กค์ด ๋ด๋ ค๊ฐ์ง ์์์ ๋๋ static
์ฒ๋ผ ์๋ํ๋ค๊ฐ,
ํด๋น์์์ ์์น ์๋๋ก ์คํฌ๋กค์ด ๋ด๋ ค๊ฐ๋ฉด ์ง์ ํ ์ขํ์ ๊ณ ์ ๋ฉ๋๋ค.
.item2 {
position: sticky;
top: 30px;
left: 30px;
}
---
## ์ถ์ฒ
- [๊ฐ๋ ฅํ CSS](https://www.inflearn.com/course/%EA%B0%95%EB%A0%A5-css-%EC%BD%94%EB%93%9C%EC%BA%A0%ED%94%84)
๐ฌ ์ต์ ๋๊ธ