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