margin

英 [ˈmɑ:dʒɪn]   美 [ˈmɑ:rdʒən]  

n.边缘,范围;极限;利润,盈余;(版心外)的空白

vt.留边;成为…的边;加边于,围绕;为…加旁注

复数: margins

bottom

英 [ˈbɒtəm]   美 [ˈbɑ:təm]  

n.底部;末端;臀部;尽头

adj.底部的

vt.装底;测量深浅;查明真相

vi.到达底部;建立基础

第三人称单数: bottoms 复数: bottoms 现在分词: bottoming 过去式: bottomed 过去分词: bottomed

javascript marginBottom属性 语法

作用:设置元素的下外边距。

语法:Object.style.marginBottom=auto|length|%

参数:auto    浏览器设置的一个下外边距。    length    定义一个固定的下外边距。默认值是 0。    %    定义基于父对象总高度的百分比下外边距。    

javascript 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>

运行实例 »

点击 "运行实例" 按钮查看在线实例