最新的Web開發教程
 

Style marginBottom Property

<Style對象

設置的底部邊緣<div>元素:

document.getElementById("myDiv").style.marginBottom = "50px";
試一試»

定義和用法

所述marginBottom屬性設置或返回一個元素的下邊距。

無論是margin屬性和元素周圍padding屬性插入空隙。 然而,不同的是,餘量插入周圍的邊界的空間中,同時填充插入一個元件的邊界內的空間。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

該marginBottom屬性在所有主流瀏覽器的支持。


句法

返回marginBottom屬性:

object .style.marginBottom

設置marginBottom屬性:

object .style.marginBottom=" 屬性值
描述
% 定義了下邊距在父元素的寬度的%
length 定義長度單位下邊距
auto 瀏覽器設置下邊距
initial 將此屬性設置為默認值。 閱讀關於初始
inherit 繼承其父元素此屬性。 閱讀關於繼承

技術細節

默認值: 0
返回值: 一個字符串,表示元素的底部邊緣
CSS版本 CSS1

更多示例

改變的底部邊緣<div>元素返回到"normal"

document.getElementById("myDiv").style.marginBottom = "0px";
試一試»

返回的底部邊緣<div>元素:

alert(document.getElementById("myDiv").style.marginBottom);
試一試»

marginBottom和paddingBottom之間的區別:

function changeMargin() {
    document.getElementById("myDiv").style.marginBottom = "100px";
}

function changePadding() {
    document.getElementById("myDiv2").style.paddingBottom = "100px";
}
試一試»

相關頁面

CSS教程: CSS保證金

CSS參考: margin-bottom property

HTML DOM參考: margin property


<Style對象