After compiling with Compass, I noticed that if I don't include @charset "UTF-8";
in my root scss file, the output looks like this:
@charset "IBM437";
Even though my CSS output still displays the correct Unicode characters, such as:
content: "ĐĂNG";
content: "TRẢ LỜI";
The CSS still functions properly in Chrome and Firefox, but it fails in IE because it doesn't render the Unicode characters correctly. If I add @charset "UTF-8";
, the output becomes completely wrong:
content: "─É─éNG";
content: "TRẢ LỜI";
Currently, I can still manage to modify it with just two properties using Unicode characters, but if there are more Unicode characters, it would become a nightmare. Should I make changes to the config.rb file?