Style paddingBottom 屬性
Style 對象定義和用法
paddingBottom 屬性設置或返回元素的下內邊距。
語法
設置 paddingBottom 屬性:
Object.style.paddingBottom="%|length|inherit"
返回 paddingBottom 屬性:
Object.style.paddingBottom
值 | 描述 |
---|---|
% | 定義基于父元素寬度的百分比下內邊距。 |
length | 使用 px、cm 等單位定義下內邊距的寬度。 |
inherit | 下內邊距從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 paddingBottom 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
提示和注釋
margin 屬性和 padding 屬性都是在元素周圍插入空間。然而,不同的是,margin 將圍繞邊框外面插入空間,padding 將在元素邊框內插入空間。
實例
實例
更改 div 元素的下內邊距:
<html>
<head>
<style type="text/css">
#ex1
{
border: 1px solid #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.paddingBottom="100px";
}
</script>
</head>
<body>
<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change bottom padding</button>
</body>
</html>
<head>
<style type="text/css">
#ex1
{
border: 1px solid #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.paddingBottom="100px";
}
</script>
</head>
<body>
<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change bottom padding</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: