word

英[wɜ:d] 美[wɜ:rd]

n. 言葉; 談話; 約束; メッセージ

vt .言葉遣い、言葉遣い; 言葉で表現する

vi.スピーチ

三人称単数:words 複数形:words 現在分詞:wording 過去形:worded 過去分詞:worded

spacing

英[ˈspeɪsɪŋ] 美[ˈspesɪŋ]

n. 間隔、間隔; スパン; 密度; 隙間を残す

JavaScriptのwordSpacing属性 構文

機能:テキスト内の単語の間隔を設定します。

構文: Object.style.wordSpacing=normal|length

JavaScriptのwordSpacing属性 例

<html>
<head>
<script type="text/javascript">
function changeWordSpacing()
{
document.getElementById("p1").style.wordSpacing="10px";
}
</script>
</head>
<body>

<p id="p1">This is an example paragraph</p>

<input type="button" onclick="changeWordSpacing()" 
value="Change space between words" />

</body>
</html>

インスタンスの実行 »

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します