Is there a way to apply the transform to an element inserted with: before?
The following does not work, but I am open to other solutions.
.itemclass:before {
content: "➨";
transform: rotate(30deg);
-ms-transform: rotate(30deg);
-webkit-transform: rotate(30deg);
}
source
share