JavaScriptのlineHeightプロパティ
翻訳結果:
英 [lain hait] 美 [laɪn haɪt]
行高
JavaScriptのlineHeightプロパティ構文
機能:行間の距離 (行の高さ) を設定します。
構文: Object.style.lineHeight=normal|number|length|%
JavaScriptのlineHeightプロパティ例
<html> <head> <script type="text/javascript"> function changeLineHeight() { document.getElementById("div1").style.lineHeight="2"; } </script> </head> <body> <div id="div1"> This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. </div> <br /> <input type="button" onclick="changeLineHeight()" value="Change line-height" /> </body> </html>
インスタンスの実行 »
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します