このように番号を自動で付けるには、スタイルファイルを次のようにします:
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)". ";
}