<ul class="breadcrumb">
<li>의류</li>
<li>상의</li>
<li>아우터</li>
<li>MA - 1</li>
</ul>
.breadcrumb {
/* 리스트의 똥글뱅이를 없애줌 */
list-style-type: none;
display: flex;
}
.breadcrumb li+li::before {
padding: 8px;
color: black;
content: "/";
}
.breadcrumb > li {
color: blue;
cursor: pointer;
}
.breadcrumb > li:last-child {
color: gray;
cursor: default;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.