try the following:
.crumbs li { display: inline; float: left; margin-right: -11px; position: relative; }
so that they match each other. now add this:
.crumbs li:nth-child(1) { z-index:10; } .crumbs li:nth-child(2) { z-index:9; } .crumbs li:nth-child(3) { z-index:8; }
etc.
The only problem: nth-child is css3, so this is bad for supporting your cross browser. You can also add classes to everything, for example, "li.first li.second li.third", etc. And give them decreasing z-indices. Then it should work
source share