Backslashes being stripped from CSS

The title explains my problem. Upon saving CSS stylesheet in the “Appearance > Editor”, single backslashes are being stripped out of the stylesheet.

For example:

content="\foo"

becomes:

content="foo"

I cannot find any solution to this on the web. Is there a way around this?

1 Answer
1

Add a second backslash e.g.

content="\\foo"

Leave a Comment