I'm looking for a way to add an HTML tag for CSS content property inside :after
and :before
.
Unlike this question which only discusses adding symbols like <
. What I'm trying to add is something like:
.breadcrumbs li a:before {
content: '<i class="icon"></i>';
}
Is there any possible way to do that?
<a>
tag? – Rampant