bottom
English [ˈbɑ:təm]
n. 하단;
vt의 하단 설치; . 바닥에 도달하기
CSS 하단 속성 통사론
기능: bottom 속성은 요소의 아래쪽 가장자리를 지정합니다.
설명: 이 속성은 위치가 지정된 요소의 아래쪽 여백 경계와 포함 블록의 아래쪽 경계 사이의 오프셋을 정의합니다. "position" 속성의 값이 "static"인 경우 "bottom" 속성을 설정해도 아무런 효과가 없습니다.
참고: 모든 주요 브라우저는 하단 속성을 지원합니다. 속성 값 "inherit"는 모든 버전의 Internet Explorer(IE8 포함)에서 지원되지 않습니다.
CSS 하단 속성 예
<html> <head> <style type="text/css"> img.ex1 { position:absolute; bottom:0px; } img.ex2 { position:relative; bottom:-100px; } </style> </head> <body> <img class="ex1" src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" /> <h1>This is a heading</h1> <img class="ex2" src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" /> </body> </html>
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요