목차
bottom 정의
bottom 구문
bottom 예제 - position:static 경우
bottom 예제 - position:absolute 경우
bottom 예제 - position:fixed 경우
bottom 예제 - position:relative 경우
bottom 정의
해당 태그 위치를 하단 기준 으로 어느 높이에 위치시킬건지 지정.
1.
position 속성과 함께 사용.2.
position:static 일 땐 bottom 속성 무시됨.
3. bottom 속성의 속성값 동일해도, positon 속성의 속성값이 뭐냐에 따라 위치가 다르게 지정됨.
4.
기본값 : auto
상속여부 : X
애니효과 : O
CSS버전 : CSS2
JS구문 : object.style.
bottom ="10px"
5.
※ IE7 버그 이슈 있음.
bottom 구문
selector { bottom: auto|length|initial|inherit;}
[속성값]
auto
상단 기분점에서 얼마나 밑으로 내려 위치시킬 건지 브라우저가 자동 결정 (기본값)
length (px 단위, cm 단위, % 단위)
상단 기준점에서 몇 px만큼 밑으로 내려 위치시킬 건지 지정. 음수값 경우 하단 기준보다 아래 위치
initial
이 속성의 기본값으로 설정.
inherit 부모요소의 속성값 상속.
bottom 예제 - position:static 경우
문서 흐름인 p요소 열에 맞춰 위치, 이 경우 bottom, left 속성은 무시됨.
<style>
.parent {
width: 720px;
height: 1000px;
margin: auto;
border: 1px solid #b8064d;
background-color: #f8e1eb;
color:#b8064d;
padding-left:10px
}
.child {
width: 200px;
border: 1px solid #b8064d;
background-color: #f8e1eb;
position: static;
bottom: 100px;
left: 100px;
color:#b8064d;
padding-left:10px
}
</style>
<div class="parent">
<p>홈짱닷컴 (homzzang.com)</p>
<div class="child">
<p>홈페이지 무료 제작 강의</p>
</div>
<p>HTML CSS 무료 강의</p>
</div>
bottom 예제 - position:absolute 경우
부모 요소인 브라우저 기준, bottom left 속성에 의해 하단 왼쪽 기준, 스크롤하면 위치 변함
<style>
.parent {
width: 720px;
height: 1000px;
margin: auto;
border: 1px solid #b8064d;
background-color: #f8e1eb;
color:#b8064d;
padding-left:10px
}
.child {
width: 200px;
border: 1px solid #b8064d;
background-color: #f8e1eb;
position: absolute;
bottom: 100px;
left: 100px;
color:#b8064d;
padding-left:10px
}
</style>
<div class="parent">
<p>홈짱닷컴 (homzzang.com)</p>
<div class="child">
<p>홈페이지 무료 제작 강의</p>
</div>
<p>HTML CSS 무료 강의</p>
</div>
bottom 예제 - position:fixed 경우
부모 요소 브라우저 기준, bottom left 속성에 의해 하단 왼쪽 기준, 스크롤 해도 위치 불변
<style>
.parent {
width: 720px;
height: 1000px;
margin: auto;
border: 1px solid #b8064d;
background-color: #f8e1eb;
color:#b8064d;
padding-left:10px
}
.child {
width: 200px;
border: 1px solid #b8064d;
background-color: #f8e1eb;
position: fixed;
bottom: 100px;
left: 100px;
color:#b8064d;
padding-left:10px
}
</style>
<div class="parent">
<p>홈짱닷컴 (homzzang.com)</p>
<div class="child">
<p>홈페이지 무료 제작 강의</p>
</div>
<p>HTML CSS 무료 강의</p>
</div>
bottom 예제 - position:relative 경우
해당 요소가 원래 있던 자리 기준, bottom left 속성에 의해 하단 왼쪽 기준
<style>
.parent {
width: 720px;
height: 1000px;
margin: auto;
border: 1px solid #b8064d;
background-color: #f8e1eb;
color:#b8064d;
padding-left:10px
}
.child {
width: 200px;
border: 1px solid #b8064d;
background-color: #f8e1eb;
position: relative;
bottom: 100px;
left: 100px;
color:#b8064d;
padding-left:10px
}
</style>
<div class="parent">
<p>홈짱닷컴 (homzzang.com)</p>
<div class="child">
<p>홈페이지 무료 제작 강의</p>
</div>
<p>HTML CSS 무료 강의</p>
</div>
주소 복사
랜덤 이동