Breadcrumb Generator
Create navigation breadcrumbs for your website with custom styling
Style Presets
Breadcrumb Items
Separator
Colors
Typography
Spacing
Options
Live Preview
Generated CSS
.breadcrumb {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 8px;
padding: 0px;
background: transparent;
border-radius: 0px;
font-size: 14px;
font-weight: normal;
list-style: none;
margin: 0;
}
.breadcrumb-item {
display: flex;
align-items: center;
gap: 8px;
color: #6b7280;
}
.breadcrumb-item:not(:last-child)::after {
content: 'โบ';
color: #9ca3af;
font-size: 14px;
}
.breadcrumb-item a {
color: #3b82f6;
text-decoration: none;
transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
color: #1d4ed8;
text-decoration: underline;
}
.breadcrumb-item.current {
color: #6b7280;
}
.breadcrumb-item .home-icon {
width: 14px;
height: 14px;
}Generated HTML
<nav aria-label="Breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="/">Home</a>
</li>
<li class="breadcrumb-item">
<a href="/products">Products</a>
</li>
<li class="breadcrumb-item">
<a href="/products/electronics">Electronics</a>
</li>
<li class="breadcrumb-item current" aria-current="page">
<span>Laptops</span>
</li>
</ol>
</nav>Breadcrumb Best Practices
Accessibility
- Use
<nav>witharia-label="Breadcrumb" - Use
<ol>for ordered list semantics - Add
aria-current="page"to current page - Ensure sufficient color contrast for links
SEO Benefits
- Helps search engines understand site structure
- Can appear in search results as rich snippets
- Consider adding JSON-LD structured data
- Keep URLs descriptive and consistent
User Experience
- Always show home as the first item
- Current page should not be a link
- Truncate for deep hierarchies (5+ levels)
- Keep labels short and descriptive
Placement
- Place at top of page, below header
- Position above main content heading
- Keep consistent across all pages
- Don't show on homepage
Need Help With Your Website Navigation?
Our team at Brix340 can design intuitive navigation systems that guide users through your content effectively. From breadcrumbs to mega menus, we create navigation that enhances user experience.
Get a Free Consultation