250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 실행 컨텍스트
- bcrypt
- TypeError: this.boardRepository.createBoard is not a function
- 자바스크립트
- django westagram
- nodeJS
- 장고초기세팅
- pm2
- typescript
- CORS
- OSI7계층
- 노드
- 프로미스
- async/await
- 스코프
- 트랜잭션
- rebase
- crud2
- on_delete
- Jest
- JWT
- node
- javascript
- status code
- Django
- manytomanyfield
- docker
- 호이스팅
- westagram
- wecode
Archives
- Today
- Total
될때까지
((CSS)) position 속성 - relative, absolute, fixed 본문
728x90
position: relative;
- position: relative;만 작성하면 위치에 아무 변화가 없다.
- top, right, bottom, left의 property를 사용해서 원래 위치로부터 입력한 값만큼 옮겨서 배치된다.
- 박스1 relatvie박스가 relative한 위치로 이동되었다.
position: absolute;
- 가장 가까운 부모 요소를 기준으로 움직인다.
- 기준으로 삼을 부모 요소에 position:relative;를 작성한다.
- 부모태그인 wrapper에 relative를 적용했으므로, 파란색 absolute박스는 노란색 배경을 기준으로 왼쪽으로 60px떨어져서 그려진다.
position:fixed;
- 스크롤에 상관없이 고정된 위치를 갖는다.
- 파란색 박스를 fixed 값을 적용시키고 박스5를 추가했다. 스크롤바를 내렸더니 박스3은 기존의 위치에서 고정된 것을 확인할 수 있다.
728x90
'프로젝트 > wecode' 카테고리의 다른 글
((Python)) Function Parameters (0) | 2022.06.22 |
---|---|
((Python)) data type, variable, math expressions (0) | 2022.06.22 |
((CSS)) display속성의 block,inline,inline-block의 차이점 (0) | 2022.06.21 |
20220620_[Pre-course] HTML/CSS #01 ~#18 block,inline,inline-block과 그 외 알게된 내용 (0) | 2022.06.20 |
HTML <img> Tag and CSS background-image property / Semantic Web & Semantic Tag (0) | 2022.06.20 |