JavaScriptのfontWeightプロパティ


  翻訳結果:

英 [fɔnt weit] US [fɑnt weit]

[理][WIN]フォント グレースケール

JavaScriptのfontWeightプロパティ構文

機能:文字の太さを設定します。

構文: Object.style.fontWeight=value

JavaScriptのfontWeightプロパティ例

<html>
<head>
<script type="text/javascript">
function setFontWeight()
{
document.getElementById("p1").style.fontWeight="900";
}
</script>
</head>
<body>

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

<input type="button" onclick="setFontWeight()"
value="Display bold text" />

</body>
</html>

インスタンスの実行 »

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

ホームページ

ビデオ

に質問