パンくずリストの書き方

パンくずリストの書き方

パンくずリストとは

パンくずリストとはトップページを基準にサイトのどの階層にいるかの現在地を記述したナビゲーションのことです。
「breadcrumb(ブレッドクラム)」や「topic path(トピックパス)」とも呼ばれます。

パンくずリストの書き方

<ul class="breadcrumb__list" itemscope itemtype="https://schema.org/BreadcrumbList">
  <li class="breadcrumb__item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
    <a href="https://○○○○.com/" itemprop="item">
      <span itemprop="name">○○</span>
    </a>
    <meta itemprop="position" content="1" />
  </li>
  <li class="breadcrumb__item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
    <a href="https://○○○○.com/○○" itemprop="item">
      <span itemprop="name">○○○○</span>
    </a>
    <meta itemprop="position" content="2" />
  </li>
  <li class="breadcrumb__item">○○○○○○</li>
</ul>

パンくずリストのデザイン

デザインその1

See the Pen
パンくずリスト01
by Uchaaan (@Uchaaan)
on CodePen.

デザインその2

See the Pen
パンくずリスト02
by Uchaaan (@Uchaaan)
on CodePen.

デザインその3

See the Pen
パンくずリスト03
by Uchaaan (@Uchaaan)
on CodePen.

他にもあるよ。関連記事

人気記事

人気記事

最新記事

ブログカテゴリー

タグ

プロフィール

プロフィール画像

猫田 ねこ

パチンコ店勤務からweb制作会社へ転職という異色の経歴。漫画大好き。アニメ大好き。パチンコ大好きな、ねこです。

利用規約  お問い合わせ

ページトップへ