transform: rotate(180deg)
Code: Select all
.breadcrumbs .crumb::before {
content: '\2039';
font-weight: bold;
padding: 0 0.5em;
transform: rotate(180deg);
}
I finished with changing the content proprtey, and it works.
Code: Select all
.breadcrumbs .crumb::before {
content: '\203A';
font-weight: bold;
padding: 0 0.5em;
}