Glass 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-bcgl">
<a class="nuda-bcgl__link" href="#">Home</a>
<span class="nuda-bcgl__sep">›</span>
<a class="nuda-bcgl__link" href="#">Projects</a>
<span class="nuda-bcgl__sep">›</span>
<span class="nuda-bcgl__cur">NudaUI</span>
</nav>CSS
.nuda-bcgl {
display: inline-flex;
align-items: center;
gap: .5rem;
font-size: .78rem;
padding: .4rem .8rem;
background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.1);
border-radius: 99px;
backdrop-filter: blur(8px);
}
.nuda-bcgl__link {
color: #aaa;
cursor: pointer;
}
.nuda-bcgl__link:hover {
color: #fafafa;
}
.nuda-bcgl__sep {
color: #555;
}
.nuda-bcgl__cur {
color: #e4ff54;
font-weight: 600;
}
How to use Glass 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.