aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/css/layout_cookbook/breadcrumb_navigation/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-br/web/css/layout_cookbook/breadcrumb_navigation/index.html')
-rw-r--r--files/pt-br/web/css/layout_cookbook/breadcrumb_navigation/index.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/files/pt-br/web/css/layout_cookbook/breadcrumb_navigation/index.html b/files/pt-br/web/css/layout_cookbook/breadcrumb_navigation/index.html
new file mode 100644
index 0000000000..6f478482a9
--- /dev/null
+++ b/files/pt-br/web/css/layout_cookbook/breadcrumb_navigation/index.html
@@ -0,0 +1,57 @@
+---
+title: Navegação "Migalha de Pão"
+slug: Web/CSS/Layout_cookbook/Breadcrumb_Navigation
+tags:
+ - CSS
+ - Layout
+ - Migalha de pão
+ - Navegação
+ - cookbook
+ - flexbox
+translation_of: Web/CSS/Layout_cookbook/Breadcrumb_Navigation
+---
+<div>{{CSSRef}}</div>
+
+<p class="summary">A navegação "migalha de pão" ajuda o usuário a enteder sua localização no site, fornecendo uma trilha de navegação de volta à pagina inicial.</p>
+
+<p><img alt="Links displayed inline with separators" src="https://mdn.mozillademos.org/files/16228/breadcrumb-navigation.png" style="height: 108px; width: 1268px;"></p>
+
+<h2 id="Exigências">Exigências</h2>
+
+<p>Os itens tipicamente são exibidos em linha com um separador para indicar uma hierarquia entre páginas individuais.</p>
+
+<h2 id="Receita">Receita</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">Baixe esse examplo</a></p>
+</div>
+
+<h2 id="Faça_escolhas">Faça escolhas</h2>
+
+<p>Esse padrão é apresentado usando um layout flexível simples demonstrando como uma linha de CSS pode nos fornecer nossa navegação. Os separadores são adicionados usando o conteúdo gerado por CSS. Você pode alterá-las para qualquer separador que desejar.</p>
+
+<h2 id="Preocupações_com_acessibilidade">Preocupações com acessibilidade</h2>
+
+<p>Eu utilizei os atributos <code>aria-label</code> e <code>aria-current</code> para ajudar os usuários a entender o que é essa navegação e onde a página atual está na estrutura. Veja os links relacionados para mais informações.</p>
+
+<h2 id="Compatibilidade_com_navegadores">Compatibilidade com navegadores</h2>
+
+<p>Os vários métodos de layout têm diferente suporte para o navegador. Veja os gráficos abaixo para obter detalhes sobre o suporte básico para as propriedades usadas.</p>
+
+<div class="hidden">
+<p>A tabela de compatibilidade nesta página é gerada a partir de dados estruturados. Se você deseja contribuir com os dados, consulte <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> e nós envie seu pull request.</p>
+</div>
+
+<h4 id="Flexbox">Flexbox</h4>
+
+<p>{{Compat("css.properties.flex")}}</p>
+
+<h2 id="See_also" name="See_also">Veja também</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout">CSS Flexible Box Layout</a></li>
+ <li><a href="https://www.w3.org/TR/WCAG20-TECHS/G65.html">Fornecendo uma trilha de "migalha de pão"</a></li>
+ <li><a href="https://tink.uk/using-the-aria-current-attribute/">Usando o atributo aria-current</a></li>
+</ul>