Arrow 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-bca">
<span class="nuda-bca__step">Cart</span>
<span class="nuda-bca__step nuda-bca__step--on">Shipping</span>
<span class="nuda-bca__step">Payment</span>
</nav>CSS
.nuda-bca {
display: inline-flex;
font-size: .76rem;
}
.nuda-bca__step {
position: relative;
background: #1a1a1a;
color: #999;
padding: .4rem 1.1rem .4rem 1.3rem;
clip-path: polygon(0 0,calc(100% - 12px) 0,100% 50%,calc(100% - 12px) 100%,0 100%,12px 50%);
margin-right: -8px;
}
.nuda-bca__step:first-child {
padding-left: .9rem;
clip-path: polygon(0 0,calc(100% - 12px) 0,100% 50%,calc(100% - 12px) 100%,0 100%);
}
.nuda-bca__step--on {
background: #e4ff54;
color: #0a0a0a;
font-weight: 600;
}
How to use Arrow 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.