JavaScriptのletterSpacingプロパティ
翻訳結果:
UK ['letəspeɪsɪŋ] US ['letəspeɪsɪŋ]
n. 文字間のスペース
JavaScriptのletterSpacingプロパティ構文
機能: 文字間のスペースを設定します。
構文: Object.style.letterSpacing=normal|length
JavaScriptのletterSpacingプロパティ例
<html> <head> <script type="text/javascript"> function changeLetterSpacing() { document.getElementById("p1").style.letterSpacing="3"; document.getElementById("p2").style.letterSpacing="-1"; } </script> </head> <body> <p id="p1">This is an example paragraph.</p> <p id="p2">This is another example paragraph.</p> <input type="button" onclick="changeLetterSpacing()" value="Change letter-spacing" /> </body> </html>
インスタンスの実行 »
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します