JavaScript HTML DOM Style marginBottom 属性
-
-
浏览器支持
项 IE/Edge Chrome FireFox Safari Opera 属性 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"; }
-