fontSize

文字サイズを参照/設定します。設定できる値はCSSと同じです。

構文

オブジェクト.style.fontSize

例文

<html>
 <head>
  <title>fontSize</title>
  <script type="text/javascript"><!--
  function changeCSS() {
   document.getElementById("result").style.fontSize = "24pt";
  }
  // --></script>
 </head>
 <body>
 <div id="result" style="border:1px solid black">Sample text</div>
 <form>
  <input type="button" value="Change" onClick="changeCSS()">
 </form>
 </body>
</html>

関連記事

スポンサーリンク

page-break-after 印刷の改ページ箇所を指定する

ホームページ製作・web系アプリ系の製作案件募集中です。

上に戻る