🙄

lighthouseで「Heading elements are not in a sequentially-descen...」の修正方法

2022/04/26に公開

問題

修正方法

修正前

<h1>h1 title</h1>
  <h3>h3 title</h3> // h1の次がh3になっている

修正後

<h1>h1 title</h1>
  <h2>h2 title</h2> // levelを順番通りにする

参考URL

https://web.dev/i18n/ja/heading-order/

Discussion