I am minifying a bunch of CSS files, and some of them use the
CSS content property to insert actual content before or after certain selectors.
For example,
Font Awesome contains a lot of styles like this:
.icon-refresh:before { content: "\f021"; }
But after minification, the character gets rendered as an actual character (and then ignored by the browser):
.icon-refresh:before{content:"";}
Is this a known issue which can be fixed?
Thanks!