margin
English [ˈmɑ:dʒən]
n. 가장자리, 범위; 공백(페이지 중앙 외부)
vt. 여백 추가, 둘러싸기; 여백 추가...
bottom
English [ˈbɒtəm]
n. ; endadj. 바닥을 설치하다; 진실을 알아내다 바닥에 닿다 3인칭 단수: 바닥 현재분사: 바닥이 난다 과거시제: 바닥이 난다 과거분사: 바닥이 난다
자바스크립트 marginBottom 속성 통사론
기능: 요소의 하단 여백을 설정합니다.
구문: Object.style.marginBottom=auto|length|%
매개변수: auto 브라우저에서 설정한 아래쪽 여백입니다. length는 고정된 아래쪽 여백을 정의합니다. 기본값은 0입니다. % 상위 개체의 전체 높이를 기준으로 아래쪽 여백을 백분율로 정의합니다.
자바스크립트 marginBottom 속성 예
<html> <head> <script type="text/javascript"> function changeMargin() { document.getElementById("p1").style.marginBottom="32px"; } </script> </head> <body> <input type="button" onclick="changeMargin()" value="Change the bottom margin of a paragraph" /> <p>This is a paragraph</p> <p id="p1">This is a paragraph</p> <p>This is a paragraph</p> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요