Simple Breadcrumbs in CSS


Style simple breadcrumb navigation links.

Source Code

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs a:not(:last-child)::after {
    content: ' > ';
}
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments