2014-02-06

CSSでHTMLの見出しに番号をつける

CSSに, 以下のように記述する. これで, H1タグをつけた見出しに番号がつく.
body { counter-reset: section; }
h1:before { 
  counter-increment: section;
  content: counter(section) ". ";
  display: inline;
}

0 件のコメント:

コメントを投稿