Skip to content

Chevron Breadcrumb

A copy-paste breadcrumbs component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.

BreadcrumbsHTMLCSSany framework

Copy into your project

HTML
<nav class="nuda-bcc">
  <a class="nuda-bcc__link" href="#">Home</a>
  <span class="nuda-bcc__sep">›</span>
  <a class="nuda-bcc__link" href="#">Products</a>
  <span class="nuda-bcc__sep">›</span>
  <span class="nuda-bcc__cur">Headphones</span>
</nav>
CSS
.nuda-bcc {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
}

.nuda-bcc__link {
  color: #999;
  cursor: pointer;
  transition: color .15s;
}

.nuda-bcc__link:hover {
  color: #e4ff54;
}

.nuda-bcc__sep {
  color: #555;
}

.nuda-bcc__cur {
  color: #fafafa;
  font-weight: 600;
}

How to use Chevron Breadcrumb

Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.

Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.

More breadcrumbs components

← Browse all NudaUI components