Glassmorphism Bar
All crumbs live inside a single frosted glass pill container with blur and saturation.
Glassmorphism Bar the 20th of 22 designs in the 22 CSS Breadcrumbs collection. The design is implemented in pure CSS — no JavaScript required. Copy the HTML and CSS panels below into your project. Because the demo is pure CSS, it works in any framework or templating engine you happen to use. The design honours prefers-reduced-motion and uses real semantic markup, so it ships accessibility-ready out of the box.
Live preview
The code
<nav class="bc-20" aria-label="Breadcrumb">
<ol class="bc-20__list">
<li class="bc-20__item"><a class="bc-20__link" href="javascript:void(0)">Home</a></li>
<li class="bc-20__item"><a class="bc-20__link" href="javascript:void(0)">Motion</a></li>
<li class="bc-20__item">
<a class="bc-20__link bc-20__link--cur" aria-current="page" href="javascript:void(0)"
>Animation</a
>
</li>
</ol>
</nav> .bc-20 {
display: inline-block;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(16px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 50px;
padding: 4px;
}
.bc-20__list {
display: flex;
align-items: center;
list-style: none;
padding: 0;
margin: 0;
}
.bc-20__item + .bc-20__item {
border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.bc-20__link {
display: block;
padding: 6px 16px;
font-size: 13px;
font-weight: 500;
color: rgba(255, 255, 255, 0.55);
text-decoration: none;
border-radius: 50px;
transition:
background 0.3s,
color 0.3s;
}
.bc-20__link:hover {
background: rgba(255, 255, 255, 0.12);
color: #fff;
}
.bc-20__link--cur {
background: rgba(139, 127, 255, 0.25);
color: #fff;
pointer-events: none;
}