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