Prevent CSS editor from deleting special and supported code
-
In Appearance > Modify CSS, paste this:
content: attr(title)"\a"attr(cite);
This is perfectly legit, but the CSS editor will change it to
content: attr(title)"a"attr(cite);
Without the backslash before the lone a. This basically breaks the code (\a is code for carriage-return).
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Prevent CSS editor from deleting special and supported code’ is closed to new replies.