Is it feasible to utilize pure HTML
for the background-image
property?
Consider the following scenario:
The original:
background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' width='20px'><text x='0' y='15' fill='lightgray' font-family='sans-serif' font-size='20' font-weight='bold'>X</text></svg>") !important;
and I wish to achieve something similar to this, as I am using a font for the images:
background-image:("<i class='icon icon-nein'></i>" !important);