I have a short css script in Stylish that replaces Arial with a custom local font ("Dengxian") for parts of the CJK character range:
@font-face {
font-family: Arial;
unicode-range: U+2E80-FFFF;
src: local(Dengxian);
}
The problem is that Stylish reports "unicode-range" as an unknown property. Removing the unicode-range line makes the script work, but then it's undesirable to override Arial for Latin characters. What is wrong with my code?