style.marginTopは、要素のスタイル属性のmargin-topプロパティの値を取得、もしくは、設定するプロパティ。
margin-topプロパティは、要素の上のマージン(外側の余白)を指定することができる。
構文
取得
var $marginTop = $elementReference.style.marginTop;
戻り値
要素のスタイル属性のmargin-topプロパティの値。
設定
$elementReference.style.marginTop = "length | percentage | auto | inherit";
- length | percentage | auto | inherit
- 要素の上のマージンを指定。
- 下記の何れかの方法で指定する。
- length:絶対値。「px」や「pt」などの単位を付けた数値で指定。
- percentage:「%」や「em」を付けた割合で指定。
- auto:自動。ブロック要素を中央に表示させるときなどに使う。
- inherit:親要素の設定を継承。
サンプル
サンプルボックス要素
変更後のmargin-topプロパティの値:
サンプルの動作について
- 「設定(0px)」ボタンをクリックすると、「サンプルボックス要素」の上のマージンを「0px」にし、「変更後のmargin-topプロパティの値:」の右横に「0px」と表示する。
- 「設定(10px)」ボタンをクリックすると、「サンプルボックス要素」の上のマージンを「10px」にし、「変更後のmargin-topプロパティの値:」の右横に「10px」と表示する。
- 「設定(50px)」ボタンをクリックすると、「サンプルボックス要素」の上のマージンを「50px」にし、「変更後のmargin-topプロパティの値:」の右横に「50px」と表示する。
- 「設定(1em)」ボタンをクリックすると、「サンプルボックス要素」の上のマージンを「1em」にし、「変更後のmargin-topプロパティの値:」の右横に「1em」と表示する。
- 「設定(10%)」ボタンをクリックすると、「サンプルボックス要素」の上のマージンを「10%」にし、「変更後のmargin-topプロパティの値:」の右横に「10%」と表示する。
- 「設定(継承)」ボタンをクリックすると、「サンプルボックス要素」の上のマージンを親要素から継承し、「変更後のmargin-topプロパティの値:」の右横に「inherit」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setMarginTop( $marginTop ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.style.marginTop = $marginTop;
var $marginTop = $elementReference.style.marginTop;
document.getElementById( "sampleOutput" ).innerHTML = $marginTop;
}
</script>
function setMarginTop( $marginTop ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.style.marginTop = $marginTop;
var $marginTop = $elementReference.style.marginTop;
document.getElementById( "sampleOutput" ).innerHTML = $marginTop;
}
</script>
HTML
<div style="border: 1px solid blue; background-color: pink; margin: 18px; width: 400px;">
<div id="sample" style="border: 1px solid red; background-color: yellow; margin: 18px; height: 200px;">
サンプルボックス要素
</div>
</div>
<button onclick="setMarginTop('0px');">設定(0px)</button>
<button onclick="setMarginTop('10px');">設定(10px)</button>
<button onclick="setMarginTop('50px');">設定(50px)</button>
<button onclick="setMarginTop('1em');">設定(1em)</button>
<button onclick="setMarginTop('10%');">設定(10%)</button>
<button onclick="setMarginTop('inherit');">設定(継承)</button>
<p>変更後のmargin-topプロパティの値:<span id="sampleOutput"></span></p>
<div id="sample" style="border: 1px solid red; background-color: yellow; margin: 18px; height: 200px;">
サンプルボックス要素
</div>
</div>
<button onclick="setMarginTop('0px');">設定(0px)</button>
<button onclick="setMarginTop('10px');">設定(10px)</button>
<button onclick="setMarginTop('50px');">設定(50px)</button>
<button onclick="setMarginTop('1em');">設定(1em)</button>
<button onclick="setMarginTop('10%');">設定(10%)</button>
<button onclick="setMarginTop('inherit');">設定(継承)</button>
<p>変更後のmargin-topプロパティの値:<span id="sampleOutput"></span></p>