[info] CSS - phpBB Forum - Breadcrumbs - How to rotate '‹' sign and make it '›' sign

Off-topic posts of interest to the "Everything" community.
Post Reply
Stamimail
Posts: 1121
Joined: Sat Aug 31, 2013 9:05 pm

[info] CSS - phpBB Forum - Breadcrumbs - How to rotate '‹' sign and make it '›' sign

Post by Stamimail »

I tried to add
transform: rotate(180deg)
rule

Code: Select all

.breadcrumbs .crumb::before {
	content: '\2039';
	font-weight: bold;
	padding: 0 0.5em;
	transform: rotate(180deg);
}
but it didn't make it.
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;
}
🏠 Home › Board index › Everything › Off-topic discussion
Post Reply