I see this in the CSS
.breadcrumb > li + li:before {
padding: 0 5px;
color: #ccc;
content: "/\00a0";
}
Can someone explain what it means and how it works.
I have my code like this:
<li>
<a href="xxx">
Home
</a>
</li>
<li class="active">xxx</li>
How could I implement the same thing without using the CSS. Can I just add a "/" in between the two <li>
? I tried adding a <span>/</span>
but it says I cannot have a span inside the li.