JavaScriptのmarginBottomプロパティ
翻訳結果:
margin
英語 [ˈmɑ:dʒɪn] アメリカ [ˈmɑ:rdʒən]
n. エッジ、範囲、限界、利益、余剰; (バージョン外) ) ) の空白
vt. 余白を残す; ... の側になる; 余白を追加する、囲む; 余白を追加する...
複数形: margins
bottom
英[ˈbɒtəm] US[ˈ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>
インスタンスの実行 »
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します