Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

I need to place the Maltese cross on a web page. IE works, Safari works, but Firefox does not. It is wingding character.

  • 3 trả lời
  • 1 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi donlav

more options

The Maltese cross is in the winding font family. I have the following HTML on the pages:

<span class="cross" style="font-family: wingdings; vertical-align: top;">X</span>

The inline element tag is in a <font> tag.

CSS: span.cross { color: #000; font-size: 16pt; font-weight: bold; }

This has been working for years in IE 5, 6, 7 & 8, works also in safari (latest rev), but does not work in FireFox rev 4.0.1. FoxFire displays a large X instead of the Maltese cross.

Other than this small problem FoxFire works great, especially with HTML5 & CSS3.

Any help would be appreciated.

DonL </font>

The Maltese cross is in the winding font family. I have the following HTML on the pages: <pre><nowiki> <span class="cross" style="font-family: wingdings; vertical-align: top;">X</span></nowiki></pre> The inline element <span> tag is in a <font> tag. CSS: span.cross { color: #000; font-size: 16pt; font-weight: bold; } This has been working for years in IE 5, 6, 7 & 8, works also in safari (latest rev), but does not work in FireFox rev 4.0.1. FoxFire displays a large X instead of the Maltese cross. Other than this small problem FoxFire works great, especially with HTML5 & CSS3. Any help would be appreciated. DonL

Được chỉnh sửa bởi cor-el vào

Tất cả các câu trả lời (3)

more options

This concerns the Maltese cross problem. When I posted the problem, the data inside "<" and ">" characters is lost. The only thing that showed was the "X".

I posted the HTML used to display the cross w/o these chars.

span class="cross" style="font-family: wingdings; vertical-align: top" X /span

Thanks for any help.

DonL

more options

Use the Unicode representation: ✠ &#x2720;

See also:

more options

Thanks for the information. I had the unicode "u2720" but did not know how to enter it.

With a little change in the HTML and CSS it now works in FoxFire and IE.

donlav