スタイルを変更するサンプル

このページのJavaScript

function change() {
  document.getElementById("sample1").style.fontSize = "20px";
  document.getElementById("sample2").style.fontWeight = "bold";
  document.getElementById("sample3").style.color = "red";
  document.getElementById("sample4").style.fontStyle = "italic";
  document.getElementById("sample5").style.background = "#ccddee";
}

sample1

sample2

sample3

sample4

sample5

このページは、「スタイルを変更する」のサンプルプログラムです。