搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Symbol font is not displaying correctly on mozilla 23.0.1?

  • 6 个回答
  • 9 人有此问题
  • 28 次查看
  • 最后回复者为 cor-el

more options

I am displaying a html page inside a frame having some Maths symbols, using SYMBOL font. but these symbols are not display correct on mozilla browser. provide some solution.

I am displaying a html page inside a frame having some Maths symbols, using SYMBOL font. but these symbols are not display correct on mozilla browser. provide some solution.

所有回复 (6)

more options

Can you provide a URL to a page demonstrating the problem?

Did the page display correctly in earlier versions of Firefox (i.e., does the problem seem to be related to changes in Firefox 23 compared with Firefox 22)?

more options

page display is correct on chrome but not in mozilla. I have attached images from chrome and mozilla. on chrome its correct but not on mozilla. any solution?

more options

When you specify the symbols, which method are you using?

  • Unicode (e.g., ⇒ written ⇒) (page encoding should be UTF-8)
  • HTML Entity (e.g., ⇒ written ⇒)
  • <font> or <span> tag specifying a symbol font

The first two have a good chance of working on all browsers on all operating systems. The third, not so much.

The following page shows the various Unicode and HTML Entity codes corresponding to many symbols: http://www.alanwood.net/demos/symbol.html

more options

On my page third mehod "<font> or tag specifying a symbol font" is used. there are a lot html pages in which have this issue.

These html pages are source of IFrame in Asp.Net. Is there any workaround/fixes can do without doing any-changes in html pages. i.e. in Asp.Net code. </font>

more options

Hi sangeeta, the problem with writing code to solve this problem is that you likely need to create a table or a pair of arrays to contain the corresponding characters. As long as you are going to do that, it might be easier to edit the pages. Or add an external script to those pages to "fix" the references.

If you are saying that the HTML pages are out of your control, that's harder...

Is it an option to load the page dynamically onto your server so it can be processed by ASP.Net and then served using a URL from your server?

If not, are your page and the framed page on the same server? In that case, perhaps a JavaScript function that "fixes" the page could be useful.

If not, it's hard to see how you can overcome the "same origin" security constraints and get to the framed page.

more options

Websites need to use Unicode replacements for such symbols instead of an 8 bit font that maps on the (extended) ASCII set.

由NoahSUMO于修改