I want to use icon in css file.
For example like this, there shows R.
.playlist .controls label.stereopan:after {
content: "R";
}
So, I did like this below.
.playlist .controls label.stereopan:before {
content: '<i class="fas fa-car"></i>';
}
However it doesn't work, the tag is not parsed and just show the sentence. Is there any workaround?