I don't know if you have encountered this problem, but I encountered this problem when I released Maxthon 1.0. I didn't find it at that time. It was only when someone notified me after using it. Later, I spent a lot of time looking for the problem, all There was no result. Later, there was no way, so I deleted all the comments in the CSS file and solved the problem. 1. Save CSS, JS and web files into UTF-8 format uniformly.
So I thought about whether it was because of the encoding problem. Now it seems that it is actually a encoding problem.
The web page uses the UTF-8 encoding format, which is no problem. The problem is that the external CSS file is ANSI encoding by default and is not saved in UTF-8 format. You may find that this is not a problem in general, but when the CSS file contains Chinese comments, the problem arises! I guess it is because browsers below IE6 cannot parse this CSS file due to encoding problems, so CSS does not work in IE6.
If you know the reason, it will be easy to deal with. There are two ways:
2. Remove the Chinese annotations in CSS and JS, or change them to English.