I'm trying to create the following layout
Stuff » More Stuff » Children » FirstChild
» SecondChild
» ThirdChild
I have some limitations due to using a CRM system, so the html rendered is as follows:
<span>Stuff » More Stuff » Children <span class="breadcrumbItem">» FirstChild</span>
<span class="breadcrumbItem" style="margin-left:10px">» SecondChild</span></span>
<span class="breadcrumbItem" style="margin-left:20px">» ThirdChild</span>
</span>
I've tried numerous googled css results however none create the layout i am after, the closest i have come is the following, which indeed nests the items but from the beginning of the next line rather than from the end of the last.
.breadcrumbItem {
padding: 5px 6px 5px 2px;
font-size: 12px;
line-height: 6px;
display:table;
}
is it possible to do what i am attempting?