Breadcrumbs UI design tips

Breadcrumbs design UI/UX tutorial. Anatomy, structure and component usage cases overviewed with other things to consider.

Breadcrumbs UI design exploration: Anatomy, UX tips, use cases overview
UI Design

Published on

September 6, 2025

|

6 mins

Tutorials

Breadcrumbs UI design exploration: Anatomy, UX tips, use cases overview

Navigation

Subscribe to new posts

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

By subscribing you agree to with our Privacy Policy.

Share this post

Author image

Roman Kamushken

Breadcrumbs often sit quietly in the background of your app.
They don’t demand attention - they just do their job. But when they’re missing or poorly designed, users confused and get lost. That’s why getting breadcrumbs right is a subtle but essential part of interface design.

In this UI design tutorial, we’ll walk through everything you need to know before designing or implementing breadcrumbs. From clickable link anatomy and separators to edge cases like truncation, badges, close icons, and mobile behavior.

All illustrated with 22 visual examples, so you can stop guessing and start designing with clarity.

{{spacer-16}}

The anatomy of breadcrumb navigation

Breadcrumbs – are a type of navigation component commonly used to provide users with a hierarchical trail of links that represent their current location within a website or application's structure.

Links and wrappers

Every breadcrumb path is made up of individual clickable items. Each one acts as a navigational step backward in the app’s hierarchy. But designing them goes beyond text links, they need to be wrapped in containers to allow for consistent spacing, hover feedback, keyboard focus, and state styling.

The container makes each item feel like a tactile UI element, ready to be clicked. This improves both usability and accessibility. Without the wrapper, you’re limited in how you show states like hover,

Wrap each breadcrumb item inside a container, even if it’s just padding + a border-radius. It gives the component space to “breathe” and makes interactive states easier to manage.

{{spacer-16}}

Separators: tiny but mighty

Separators help visually break up each breadcrumb level and guide the eye along the path. While they don’t carry data or interactivity, they have a surprising impact on scannability.

Common options:

  • › chevrons (default for many UIs)
  • / slashes (minimal, works well in file-based apps)
  • : colons (less common, more visual pause)

Spacing is crucial here. The separator should never feel cramped between links. It should float, not sit.

Choose a separator that matches your app’s tone. Chevrons feel familiar, slashes are minimalist, colons are assertive. Just be consistent.

{{spacer-16}}

Icons inside breadcrumbs

Breadcrumbs are primarily text-based, but icons can subtly improve usability, especially when the path includes abstract or frequently used objects. Imagine a user navigating a file system, switching teams in a dashboard, or adjusting app-level settings. In each case, a tiny icon helps users orient themselves faster.

In this example, the breadcrumb path includes icons for:

  • A shopping cart (Clothing)
  • App settings (Apps > Settings)
  • Folders and file types (Documents > pipka.docx)

The icon placement must be carefully balanced, it should precede the label, align with the text baseline, and never overpower the label itself. Ideally, it’s monochromatic and muted, not competing for attention.

Use icons to add clarity, not decoration. If the path is already clear, you might not need them. But when dealing with ambiguous labels, categories, or systems with repeated labels (e.g. “Settings” in multiple scopes), icons help reduce cognitive load.

And don't forget accessibility: label the icon with aria-hidden="true" unless it's informative, and always keep the text visible. Breadcrumbs shouldn’t become tooltips.

Breadcrumb states explained

Breadcrumbs may be minimal in appearance, but their behavior is complex. Each state (hover, focus, active, disabled) needs to be clearly defined for a seamless experience.

Active state

The active breadcrumb shows where the user currently is. It’s usually the last item in the trail, and it should not be a link. Instead, it becomes a visual anchor: bolded, darkened, or otherwise styled differently from the others.

The UI in this example dims the surrounding items and places visual emphasis on the “Active” label. This reinforces the user’s location and discourages unnecessary interaction.

Never make the active breadcrumb clickable unless there's a very specific reason (e.g. to open a context menu). Otherwise, it creates confusion: why link to the page the user is already on?

{{spacer-16}}

Hover state

Hover feedback signals interactivity. In breadcrumbs, it's essential because the items often look similar to plain text.

Good hover states:

  • Slight underline or text color shift
  • Pointer cursor
  • Optional container background fill

Bad hover states:

  • No feedback at all
  • Full bolding (conflicts with active state)
  • Delay in pointer change
Hover isn't just a visual effect. It's a hint that says “you can click here.

{{spacer-16}}

Disabled state

Sometimes a breadcrumb path may contain items that look like links but aren’t actionable in context — such as when a user lacks permission or a step is temporarily locked.

A good disabled state includes:

  • Greyed-out styling
  • not-allowed cursor
  • No href or click action
Disabled breadcrumbs shouldn’t be common, but when you use them, make sure it’s obvious that they’re unavailable, not broken.

{{spacer-16}}

Focus state (keyboard navigation)

Not every user clicks. Some tab through the interface, especially power users or those relying on assistive technologies. Focus states ensure that breadcrumb items can be clearly selected via keyboard.

The best practice: apply a clear outline (stroke or box-shadow) that wraps the entire link container. Avoid relying solely on color.

If your app is WCAG-conscious, keyboard focus isn’t optional. It’s mandatory.

{{spacer-16}}

Filled backgrounds for interaction states

Some design systems prefer to highlight interactive breadcrumb items using soft background fills. This is especially common in admin panels, tables, and areas with strong layout grids. A filled breadcrumb draws the eye and reinforces actionability, while still maintaining hierarchy.

In the example above, breadcrumbs like "Account" or "Settings" are styled with a subtle Blue-100 background on hover or focus. This makes the link stand out without overwhelming the rest of the navigation.

Background fills should be used selectively. They’re great for reinforcing interactivity, but can clutter the UI if overused. Reserve them for hovered, focused, or high-priority items.

{{spacer-16}}

Stroke instead of fill (alternative approach)

For a more lightweight touch, strokes can replace solid backgrounds. They provide similar clarity without adding weight. This works especially well in flat or light UI themes where fills might feel too heavy.

In this case, the hovered or selected item uses a soft stroke (border) with rounded corners and additional spacing, giving it room to stand out cleanly.

A thin stroke offers just enough visual emphasis without breaking the flow. It’s a great compromise between minimal and expressive.

{{spacer-16}}

Corner radius matters more than you think

Subtle changes to border-radius can dramatically affect the overall vibe of your breadcrumbs. Rounded breadcrumbs feel friendlier and more modern; square ones suggest a utilitarian, data-heavy interface.

The same path, shown with varying radius settings (from sharp to soft), instantly feels more tailored to the rest of the UI.

Always match breadcrumb shape to the tone of your product. Soft? Use rounded corners. B2B analytics? Keep them sharp.

Start strong with the home link

The “Home” link is more than just tradition

Every breadcrumb path begins somewhere, and in 90% of cases, it begins with “Home”. But this element plays a deeper role than just showing the top level. It acts as an anchor, a reset point, and a fallback when users want to escape nested depth.

You’ll notice a few patterns here:

  • The Home link can be a house icon, the word “Home”, or both
  • It’s always clickable
  • It never disappears — even when breadcrumbs are truncated
If users get lost, they look for Home. Don’t hide it. Don’t replace it with a logo. Don’t remove it when the viewport is small.

Breadcrumb navigation is all about orientation. And nothing anchors that orientation better than a clear, persistent, reliable starting point. Whether it leads to a dashboard, a root folder, or the homepage; make sure Home always shows the way out.

Popovers, dropdowns & contextual menus

Breadcrumbs with popovers: actions on click

Breadcrumbs can offer more than just navigation. In some cases, they double as dropdown triggers, opening menus with options or additional paths. This is common in collaborative tools, where a breadcrumb might represent an entity (like a project, user, or folder) and clicking it shows a context-specific menu.

In this example, the "Jason Leung" breadcrumb opens a menu with teammate avatars. The breadcrumb serves as both location and interaction trigger.

Use cases include:

  • Switching between teams or workspaces
  • Reassigning ownership (users, clients)
  • Jumping to recently visited sibling pages
If a breadcrumb acts like a dropdown, style it like one. Add a chevron, or hover indicator. Don’t make users guess it’s interactive.

{{spacer-16}}

Hover-triggered submenus

Some systems allow breadcrumbs to open menus on hover (especially in dashboards or internal tools). This can speed up navigation when users revisit deep sections repeatedly.

In this view, hovering over the "Users" item opens a menu with all available user-related pages. It’s fast, frictionless, and works well with pointer devices.

Caveats:

  • Avoid hover menus on mobile (tap target confusion)
  • Don’t replace the link’s primary action - clicking should still work
  • Add a slight delay to avoid flickering or misfires
Hover popovers are power-user features. Keep them discoverable but optional; they shouldn’t block core flows.

Overflow, truncation & responsive design

Truncated breadcrumbs with ellipsis popover

In complex apps with deep navigation trees, you can’t always show the full breadcrumb path (especially on smaller screens). In such cases, you can collapse the middle items into a dropdown (commonly represented as “...” or an ellipsis).

Clicking the ellipsis opens a menu with the skipped levels. This keeps the layout clean while still offering full navigation when needed.

The key here is discoverability. Use a clear icon (like "…") and show a tooltip like “More” or “Expand path” on hover or focus.

{{spacer-16}}

Long breadcrumb labels with hard truncation

Sometimes the issue isn’t depth, but label length.

Long names: like project titles, file names, or organization names - break layout or wrap awkwardly.

This example shows truncated text like “National Grocery Vault” with ellipsis. It looks clean, but it’s critical to include:

  • Tooltip on hover
  • Full label in aria-label
  • Optional expandable view
Don’t sacrifice clarity for clean lines. If a user doesn’t know where “Nat…” leads, truncation failed.

{{spacer-16}}

Hierarchical popover with substructure

Advanced implementations may show full hierarchy in a dropdown, allowing users to jump between sibling or parent levels quickly.

This layout mimics a file system: clicking a breadcrumb opens a structured menu with nested folders or options. It’s especially useful for content-heavy platforms.

Use indentation, icons, or sections to express hierarchy clearly. Without structure, the menu becomes overwhelming.

{{spacer-16}}

Mobile-friendly collapsed breadcrumbs

On mobile, space is precious. Breadcrumbs often collapse into a single button or icon, opening a vertically stacked list.

This solution preserves clarity without taking up horizontal space. But beware:

  • Tap targets must be large enough
  • The trigger icon must be recognizable
  • Don’t hide the current page
Breadcrumbs on mobile should act like a backstack: giving users a quick escape route, not just a full path.

Styling with design tokens & themes

Tokens for color consistency

Modern design systems rely on tokens, semantic labels for colors like primary-600, gray-100, or accent-background. Applying tokens to breadcrumbs makes them easy to theme, update, and scale across different contexts.

This visual showcases a full breadcrumb path styled with Indigo tokens:

Indigo-50 background

Indigo-400 text for normal state

Indigo-800 for active item

Using tokens ensures consistency across dark/light modes, brand variations, and components.

When breadcrumbs inherit from global tokens, they adapt effortlessly, making them low-maintenance across multiple products.

{{spacer-16}}

Theme application across UI systems

Tokens are powerful, but they shine brightest when applied consistently across themed layouts.

For example: SaaS dashboards in green, analytics tools in blue, creative spaces in purple - all with breadcrumbs following the brand tone.

Each variation uses the same component structure but swaps token values to match the overall app palette.

Color isn’t just decoration, it communicates familiarity. Breadcrumbs should feel like they “belong” to the interface.

{{spacer-16}}

Token palettes as visual references

A simple grid of color combinations, like in this example, can help developers and designers align quickly on styling rules.

Tokens here include Green-100, Green-400, Green-800, etc. Having a token sheet improves collaboration, especially when breadcrumbs must match buttons, tabs, or page headers.

Include breadcrumb tokens in your system docs. It saves everyone time.

Functional UI add-ons

Breadcrumbs with dismiss buttons

Breadcrumbs sometimes reflect applied filters or search context and in such cases, being able to remove a level manually enhances control.

Here we see an “X” (close icon) next to each breadcrumb item, allowing the user to cancel that filter or tag. This is especially useful in:

  • Ecommerce filtering
  • Analytics dashboards
  • Query-based UIs
Give the user full control, let them remove what they added.

{{spacer-16}}

Breadcrumbs with status indicators (badges)

Breadcrumbs don’t just show location - they can also communicate state. Adding badges for new items, notifications, or alerts makes navigation more informative.

This layout shows small counters or colored dots indicating updates, unread items, or pending actions inside each breadcrumb segment.

Use cases:

  • Notification centers
  • Email or message threads
  • Multi-step processes with dynamic states
Don’t overdo it: one or two signals are enough. Too many badges = stress.

Usability tips to make your breadcrumbs feel effortless

Start with “Home” : users expect a safe starting point

Don’t skip hover/focus/active states : even in minimalist designs

Match breadcrumb tone to UI tone : corporate, playful, minimal, vibrant

Truncate carefully : and always add tooltips for cut-off names

Never rely on color alone : use text weight or icons too

Ensure full keyboard support : use tabIndex, aria-current, and visible outlines

Collapse breadcrumbs on mobile, not remove them : they’re still valuable in small spaces

❓ Breadcrumbs Q&A

What is breadcrumb navigation in UI design?

Breadcrumbs are a secondary navigation pattern that shows the user’s current location in a hierarchy. They help users backtrack easily and understand context inside apps or websites.

{{spacer-16}}

Should the last breadcrumb be clickable?

Usually no. The last breadcrumb represents the current page or state and clicking it again does nothing useful. Exceptions: if it opens a dropdown or context menu.

{{spacer-16}}

What is the best separator to use in breadcrumbs?

The most common is the chevron (), followed by the slash (/). Pick one that matches your visual tone and keep it consistent. Always give separators space and don’t let them crowd the text.

{{spacer-16}}

How to handle breadcrumbs on mobile devices?

Collapse the path into a single icon or menu button that expands into a vertical list. Never rely on horizontal scrolling alone, it's easy to miss levels that way.

{{spacer-16}}

Can breadcrumbs have dropdowns or popovers?

Yes, breadcrumbs can open menus on click or hover, especially when used for workspaces, file systems, or user roles. Just make sure it’s clearly indicated (with an arrow or visual cue).

{{spacer-16}}

How to style breadcrumbs using design tokens?

Use semantic tokens like text-secondary, link-hover, or container-soft so that your breadcrumbs adapt to themes without needing manual updates. This is essential for scalable systems.

{{spacer-16}}

What’s the difference between breadcrumbs and steppers?

Breadcrumbs show location, steppers show progress. Use breadcrumbs for free-form exploration, and steppers for fixed, linear flows (like onboarding, checkout, or multi-step forms).

Share this post

Subscribe to Setproduct

Once per week we send a newsletter with new releases, freebies and blog publications
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

By clicking Sign Up you're confirming that you agree with our Terms and Conditions.

Congratulations!

You're in! Expect awesome updates in your inbox

FAQs

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique.
No items found.

Our Dashboard Templates Will Make It A Treat To View Data

Experience the magic of data visualization with our user-friendly dashboard templates. Try out our dashboards now and enjoy efficient reporting processes, greater transparency in, among others monitoring and making educated decisions easily.
Material X for Figma

Material X for Figma

Figma library with 1100+ components & 40 app templates beyond Material Design. Powered by top-notch shapes and Manrope font. Customizable & Adjustable UI kit now available for Angular & Figma

Material You UI kit

Material You UI kit

Figma & React library with 2600+ variants of 32 components compatible with Material Design 3. Plus 220+ dashboard templates for all the viewports. Now available for NextJS & TailwindCSS.

Figma React UI kit

Figma React UI kit

Designed and well-organized in Figma React-based UI toolkit for the web. Optimized for building complex data-dense interfaces for desktop and mobile applications.

Panda Design System

Panda Design System

Figma library with dashboard, calendar, kanban, profile, table, ecommerce and 80+ templates in total. Components with variants, dark theme included.

Eclipse UI kit

Eclipse UI kit

Figma library with 1100+ components & 74 templates for data-driven web applications. Powered by auto-layout. Supercharged by Figma's variants.

Rome UI kit for Figma

Rome UI kit for Figma

Customizable and well-organized team library. Contains 250+ components & 30 web app templates powered by stylish and trendy guidelines.

Material Design System

Material Design System

Figma library is based on 100% guidelines compliance with Material.io. Contains ready‑to-use templates to accelerate app UI design.

Neolex Dashboard UI kit

Neolex Dashboard UI kit

Customizable & adjustable dashboard design system with 50+ ready-to-use app layouts, 1900+ variants for 30 components with auto-layout.

Material Desktop Dashboard UI kit

Material Desktop Dashboard UI kit

Figma library with 48+ dashboard templates based on reusable desktop app patterns carefully handpicked from the most popular web apps.

Xela UI kit for Figma

Xela UI kit for Figma

Figma library with 1900+ variants of 30 components categories to craft perfectly shaped desktop & mobile apps. Customizable & Adjustable dashboard design system with 50+ web app templates.

Figma S8 Design System

Figma S8 Design System

Figma design library for mobile and desktop apps made of high quality styled components. Full version includes 67 dashboard templates.

OE Figma Design System

OE Figma Design System

Customizable and well-organized Figma library. This design system aimed to build highly loaded interfaces, boost the speed and save more costs.

Related posts

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

UI Design

4 min read

Landing page design tips for startups to product market fit

You’ve got a killer product. Now you need a landing page that matches its awesomeness. But after the hero section, you’re stuck. What comes next? This guide will walk you through the essential sections for a high-converting landing page.

UI Design

10 min read

Pagination UI design tutorial

This tutorial provides a comprehensive guide to designing UX-friendly pagination systems, covering anatomy, states, and variations like offset and keyset pagination. It includes actionable advice for tables, e-commerce, and search results, paired with usability and accessibility best practices.

UI Design

8 min read

Tabs UI design – A guide for anatomy, UX tips, and use cases

Optimize Tabs for your dashboard. Learn Tab theming options and accessibility best practices. Create perfect user experiences and enhance tabs navigation with this tutorial..

Figma Templates & UI kits

Save time and human resources by reusing hundreds of pre-made templates crafted by us. Based on top notch UX taken from the World's best apps.

Material X for Figma

Figma library with 1100+ components & 40 app templates beyond Material Design. Powered by top-notch shapes and Manrope font. Customizable & Adjustable UI kit now available for Angular & Figma

Material You UI kit

Figma & React library with 2600+ variants of 32 components compatible with Material Design 3. Plus 220+ dashboard templates for all the viewports. Now available for NextJS & TailwindCSS.

Figma React UI kit

Designed and well-organized in Figma React-based UI toolkit for the web. Optimized for building complex data-dense interfaces for desktop and mobile applications.

Panda Design System

Figma library with dashboard, calendar, kanban, profile, table, ecommerce and 80+ templates in total. Components with variants, dark theme included.

Eclipse UI kit

Figma library with 1100+ components & 74 templates for data-driven web applications. Powered by auto-layout. Supercharged by Figma's variants.

Rome UI kit for Figma

Customizable and well-organized team library. Contains 250+ components & 30 web app templates powered by stylish and trendy guidelines.

Material Design System

Figma library is based on 100% guidelines compliance with Material.io. Contains ready‑to-use templates to accelerate app UI design.

Neolex Dashboard UI kit

Customizable & adjustable dashboard design system with 50+ ready-to-use app layouts, 1900+ variants for 30 components with auto-layout.

Material Desktop Dashboard UI kit

Figma library with 48+ dashboard templates based on reusable desktop app patterns carefully handpicked from the most popular web apps.

Xela UI kit for Figma

Figma library with 1900+ variants of 30 components categories to craft perfectly shaped desktop & mobile apps. Customizable & Adjustable dashboard design system with 50+ web app templates.

Figma S8 Design System

Figma design library for mobile and desktop apps made of high quality styled components. Full version includes 67 dashboard templates.

OE Figma Design System

Customizable and well-organized Figma library. This design system aimed to build highly loaded interfaces, boost the speed and save more costs.

Figma iOS kit

Figma library of iOS patterns served as ready-made templates. This UI kit inspired by World's best apps. Based on Human Interface guidelines.

Figma S8 Design System

Figma design library for mobile and desktop apps made of high quality styled components. Full version includes 67 dashboard templates.

Most iOS UI kit for Figma

iOS native components and app templates organized into a «Most Design System» fully compatible with Apple's Human Interface guidelines.

Rome UI kit for Figma

Customizable and well-organized team library. Contains 250+ components & 30 web app templates powered by stylish and trendy guidelines.

Material Design System

Figma library is based on 100% guidelines compliance with Material.io. Contains ready‑to-use templates to accelerate app UI design.

Nucleus UI

Nucleus UI contains 1000 components and variants with 500+ mobile screens designed for Figma (including 9 themes from Event, E-commerce, Finance, NFT, etc.).

Figma Android UI kit

Components-driven Android mobile UI library for Figma. Consists of 140 high quality application templates made of total 250+ UI components.

Mobile X UI kit

Customizable & adjustable iOS / Android design system loaded with ready-made 157 app templates based on 860+ variants for 20 components.

Appka iOS UI kit

Customizable & adjustable iOS design system with 4100+ variants for 28 components and 280+ ready-to-use app layouts crafted for Figma.

Full iOS UI kit

Customizable iOS design system with 320 ready-to-use app layouts. You can modify them or use as it is to save time and never design from scratch again.

Xela for Flutter

XelaUI for Flutter is a simple, modular and accessible component library that gives you the building Flutter apps for mobile and desktop.

Xela for Android

Ready-made collection of fully customizable widgets, UI screens and reusable components for Android coded with Jetpack Compose.

Xela for Swift

Designed for iOS Developers. We provide fully coded customizable components, widgets and well-organized iOS screens for Figma & SwiftUI.

Material You UI kit

Figma & React library with 2600+ variants of 32 components compatible with Material Design 3. Plus 220+ dashboard templates for all the viewports. Now available for NextJS & TailwindCSS.

Figma Charts UI kit

Components-driven graphs design kit for dashboards, presentations, infographics & data visualisation. Includes 25+ charts types for all the viewports.

Hyper Charts

Create impressive visuals with Figma's graphs templates – dozens of scalable and customizable data visualization blocks for dark and light modes.

Orion UI kit

Figma library with 40+ full-width charts templates served in light & dark themes. Contains 200+ of dataviz widgets that look perfect on desktop & mobile screens.

Xela for React

React based components library for beautiful user interface in React apps. Lightweight library for your projects. Contains pre-made web app templates.

Figma React UI kit

Designed and well-organized in Figma React-based UI toolkit for the web. Optimized for building complex data-dense interfaces for desktop and mobile applications.

Material X for Figma

Figma library with 1100+ components & 40 app templates beyond Material Design. Powered by top-notch shapes and Manrope font. Customizable & Adjustable UI kit now available for Angular & Figma

Xela for Flutter

XelaUI for Flutter is a simple, modular and accessible component library that gives you the building Flutter apps for mobile and desktop.

Xela for Android

Ready-made collection of fully customizable widgets, UI screens and reusable components for Android coded with Jetpack Compose.

Xela for Swift

Designed for iOS Developers. We provide fully coded customizable components, widgets and well-organized iOS screens for Figma & SwiftUI.

Material You UI kit

Figma & React library with 2600+ variants of 32 components compatible with Material Design 3. Plus 220+ dashboard templates for all the viewports. Now available for NextJS & TailwindCSS.

Xela for React

React based components library for beautiful user interface in React apps. Lightweight library for your projects. Contains pre-made web app templates.

Levitate 3D kit for Figma

Components-driven 3D kit to design eye-catching Figma presentations. Helps to enhance your landing page, product or app, brand ident, etc.

Website templates UI kit

Landing pages reusable templates kit based on most effective web design patterns. 140+ dark & light constrained design blocks.

Figma Landing Pages UI kit

Landing pages templates library based on constrained & organized components aimed to speed-up the production of effective websites.

Zeus UI kit

Create hassle-free landing pages in Figma. This kit is based on 10 landing page templates, powered by 1600+ variants for 630+ web blocks.

This is some text inside of a div block.
This is some text inside of a div block.