セクションに番号を自動で付ける

無意味なセクション

無意味なサブセクション

またまた無意味なサブセクション

無意味なサブサブセクション

またまた無意味なサブサブセクション

またまた無意味なセクション

このように番号を自動で付けるには、スタイルファイルを次のようにします:

h1 { counter-reset: section }
h2 { counter-reset: subsection }
h3 { counter-reset: subsubsection }
h2:before {
  counter-increment: section;
  content: counter(section)". ";
}
h3:before {
  counter-increment: subsection;
  content: counter(section)"."counter(subsection)". ";
}
h4:before {
  counter-increment: subsubsection;
  content: counter(section)"."counter(subsection)"."counter(subsubsection)". ";
}