aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/layout_cookbook/breadcrumb_navigation/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/css/layout_cookbook/breadcrumb_navigation/index.html')
-rw-r--r--files/ja/web/css/layout_cookbook/breadcrumb_navigation/index.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/files/ja/web/css/layout_cookbook/breadcrumb_navigation/index.html b/files/ja/web/css/layout_cookbook/breadcrumb_navigation/index.html
new file mode 100644
index 0000000000..ac905fc918
--- /dev/null
+++ b/files/ja/web/css/layout_cookbook/breadcrumb_navigation/index.html
@@ -0,0 +1,56 @@
+---
+title: パンくずナビゲーション
+slug: Web/CSS/Layout_cookbook/Breadcrumb_Navigation
+tags:
+ - CSS
+ - Layout
+ - Navigation
+ - cookbook
+ - flexbox
+translation_of: Web/CSS/Layout_cookbook/Breadcrumb_Navigation
+---
+<div>{{CSSRef}}</div>
+
+<p class="summary"><span class="seoSummary">パンくず(Breadcrumb)ナビゲーションは、来た道をたどって開始ページまで戻ることができるパンくずリストを提供することによって、ユーザーがウェブサイト内の自分の位置を理解するのに役立ちます。</span></p>
+
+<p><img alt="リンクを区切り文字を付けてインラインで表示" src="https://mdn.mozillademos.org/files/16228/breadcrumb-navigation.png" style="height: 108px; width: 1268px;"></p>
+
+<h2 id="Requirements" name="Requirements">要件</h2>
+
+<p>項目は通常、個々のページ間の階層を示すために、区切り文字を付けてインラインで表示されます。</p>
+
+<h2 id="Recipe" name="Recipe">レシピ</h2>
+
+<p>{{EmbedGHLiveSample("css-examples/css-cookbook/breadcrumb-navigation.html", '100%', 530)}}</p>
+
+<div class="note">
+<p><a href="https://github.com/mdn/css-examples/blob/master/css-cookbook/breadcrumb-navigation--download.html">この例をダウンロードする</a></p>
+</div>
+
+<h2 id="Choices_made" name="Choices_made">行った選択</h2>
+
+<p>このパターンは単純なフレックスレイアウトを使用してレイアウトされており、CSS の1行でナビゲーションがどのように行われるかを示しています。 区切り文字は CSS 生成コンテンツを使用して追加されます。 区切り文字は好きなものに変更することができます。</p>
+
+<h2 id="Accessibility_concerns" name="Accessibility_concerns">アクセシビリティへの懸念</h2>
+
+<p><code>aria-label</code> 属性および <code>aria-current</code> 属性を使用して、このナビゲーションが何であるか、そして現在のページが構造のどこにあるのかをユーザーが理解できるようにしています。 詳細については関連リンクを参照してください。</p>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
+
+<p>さまざまなレイアウト方法が異なるブラウザーサポートを持っています。 使用されているプロパティの基本的なサポートの詳細については、以下の表を参照してください。</p>
+
+<div class="hidden">
+<p>The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+</div>
+
+<h4 id="Flexbox" name="Flexbox">フレックスボックス</h4>
+
+<p>{{Compat("css.properties.flex")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/CSS/CSS_Flexible_Box_Layout">CSS フレックスボックスレイアウト</a></li>
+ <li><a href="https://www.w3.org/TR/WCAG20-TECHS/G65.html">パンくずリストの提供</a>(英語)</li>
+ <li><a href="https://tink.uk/using-the-aria-current-attribute/">aria-current 属性の使用</a>(英語)</li>
+</ul>