일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 27 | 28 | 29 | 30 |
Tags
- java #자바 #동빈나
- DFS
- 재귀
- css #웹 #생활코딩
- java #자바 #나동빈
- 알고리즘
- 투포인터
- java #자바 #생활코딩
- 파이썬 #알고리즘 #코딩테스트 #프로그래머스
- 파이썬
- css #생활코딩 #웹
- 자바 #java
- 백트랙킹
- react #리액트 #동빈나
- 프로그래머스 #파이썬 #코딩테스트 #알고리즘
- 다이나믹프로그래밍
- dp
- Dijkstra
- 프로그래머스 #파이썬 #알고리즘 #코딩테스트
- 다익스트라
- 백준 #파이썬 #알고리즘 #코딩테스트
- react #리액트 #동빈나 #나동빈 #유튜브강의
- 프로그래머스
- 파이썬 #백준 #알고리즘 #코딩테스트
- PYTHON
- 백준
- java #자바
- 코딩테스트
- BFS
- 백준 #알고리즘 #파이썬 #코딩테스트
Archives
- Today
- Total
커리까지
CSS 수업 - 포지션 3 : fixed 본문
728x90
SMALL
<html>
<head>
<style>
#parent, #other{
border:5px solid tomato;
}
#large {
height:10000px;
background-color:tomato;
}
#me{
background-color:blakk;
color:white;
position: fixed;
left:0px;
top:0px;
}
</style>
</head>
<body>
<div id='other'>
other
</div>
<div id='parent'>
parent
<div id='me'>
me
</div>
</div>
<div id='large'>
large
</div>
</body>
</html>
- 부모 값중 위치가 정해지지 않은 것들중에 absolute가 적용된다.
스크롤을 내려도 me는 고정되어있다.
특정한 요소를 고정시키고 싶으면 fixed를 사용한다.
#me{
background-color:blakk;
color:white;
position: fixed;
left:0px;
bottom:0px;
width:100%;
text-align:center;
}
- me가 맽밑에 고정된다.
- fixed도 absolute랑 비슷하다.
- 부모 크기도 자식과 연결이 끊겼기 때문에 자식의 크기를 포함하지 않는다.
- 자식은 부모와 연결이 끊겨서 본인 크기만 가져간다.
728x90
LIST
'CSS' 카테고리의 다른 글
CSS 수업 - flex 2 : basic (0) | 2021.03.18 |
---|---|
CSS 수업 - flex 1 : intro (0) | 2021.03.17 |
CSS 수업 - 포지션 2 : absolute (0) | 2021.03.15 |
CSS 수업 - 포지션 1 : relative VS static (0) | 2021.03.12 |
CSS 수업 - 마진 겹침 3 (0) | 2021.03.11 |
Comments