티스토리 뷰
css로 positioning하는 법을 배워보자 - position:static
관련글
2013/03/11 - [Web개발/Web Standard] - 04 CSS로 Positioning하는 법을 배워보자 - float:left
positioning옵션은 크게 3가지이다.
static, relative, absolute.
css에 적용하는 방법은 아래와 같다.
position:static;
position:relative;
position:absolute;
static
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 31 32 33 34 35 | #article01{ position:static; width:100px; height:100px; background:#3E454C; } #article02{ position:static; width:100px; height:100px; background:#2185C5; } #article03{ position:static; width:100px; height:100px; background:#7ECEFD; } #article04{ position:static; width:100px; height:100px; background:#FFF6E5; } #article05{ position:static; width:100px; height:100px; background:#FF7F66; } | cs |
결과 화면.
이렇게 나온다.
아래 소스코드 '#article01'을 보자 위치를 top:20px; left:40px;라는 값을 주었다. 어떻게 변하는지 보자.
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 31 32 33 34 35 36 37 38 | #article01{ position:static; width:100px; height:100px; background:#3E454C; top:20px; left:40px; } #article02{ position:static; width:100px; height:100px; background:#2185C5; } #article03{ position:static; width:100px; height:100px; background:#7ECEFD; } #article04{ position:static; width:100px; height:100px; background:#FFF6E5; } #article05{ position:static; width:100px; height:100px; background:#FF7F66; } | cs |
결과 화면.
이런.. 변화가 없다.
posistion:static 을 적용하면 시작 위치를 지정해 주어도 개체의 위치가 변하지 않는다.
relative
relative라는 단어는 '상대적인'이라는 뜻이 있다.
hello
아래 #article01을 보자. position:relative;를 적용했다.
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 31 32 33 34 | #article01{ position:relative; width:100px; height:100px; background:#3E454C; } #article02{ position:static; width:100px; height:100px; background:#2185C5; } #article03{ position:static; width:100px; height:100px; background:#7ECEFD; } #article04{ position:static; width:100px; height:100px; background:#FFF6E5; } #article05{ position:static; width:100px; height:100px; background:#FF7F66; } | cs |
결과
일단은 static을 적용한 것과 똑같다.
그러면 객체의 시작 위치를 지정해보자.
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 31 32 33 34 35 36 37 | #article01{ position:relative; width:100px; height:100px; background:#3E454C; top:20px; left:40px; } #article02{ position:static; width:100px; height:100px; background:#2185C5; } #article03{ position:static; width:100px; height:100px; background:#7ECEFD; } #article04{ position:static; width:100px; height:100px; background:#FFF6E5; } #article05{ position:static; width:100px; height:100px; background:#FF7F66; } | cs |
결과 화면. static과 다르게 위치가 이동한 것을 볼 수 있다.
absolute
absolute는 적용하고자 하는 객체가 포함된 객체의 모서리 기준이다.
아래 소스코드의 #article01을 보자 position:absolute 를 적용했다
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 31 32 33 34 35 36 37 | #article01{ position:absolute; width:100px; height:100px; background:#3E454C; top:300px; left:500px; } #article02{ position:static; width:100px; height:100px; background:#2185C5; } #article03{ position:static; width:100px; height:100px; background:#7ECEFD; } #article04{ position:static; width:100px; height:100px; background:#FFF6E5; } #article05{ position:static; width:100px; height:100px; background:#FF7F66; } | cs |
section의 모서리 기준으로 300*500px 떨어진 위치에서 그려진다.
end.
728x90
'Web개발' 카테고리의 다른 글
CSS 두 줄로 배치 하는 방법 예제 (0) | 2013.04.02 |
---|---|
05 CSS로 Positioning 하는 법을 알아보자 - clear:both (0) | 2013.03.11 |
04 CSS로 Positioning하는 법을 배워보자 - float:left (0) | 2013.03.11 |
02 Open API 시작하기 - App등록하기 (8) | 2013.02.07 |
01 Open API를 배우자 - Open API란? (5) | 2013.01.31 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 싱가폴
- docker container
- 도커각티슈케이스
- 도커티슈박스
- vim
- 개발자
- docker container tissue
- Sh
- 도커티슈케이스
- docker container tissue box
- 도커각티슈박스
- 2017 티스토리 결산
- shellscript
- Linux
- docker container case
- 도커컨테이너
- 이직
- docker container whale
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함