@font-face 在 Firefox 中不起作用

发布于 2024-11-27 19:45:04 字数 823 浏览 1 评论 0原文

可能的重复:
css @font-face 不使用 Firefox,但使用 Chrome 和 IE

我遇到了一些问题,似乎不知道解决方案是什么。

我使用 Museo 作为网络字体。在 Safari 中,一切都像魅力一样工作,但在 Firefox 中却不起作用。 有谁知道为什么吗?

@font-face {font-family: 'MuseoSans-500';
src: url('webfonts/eot/style_159303.eot');
src: url('webfonts/eot/style_159303.eot?#iefix') format('embedded-opentype'),
url('webfonts/woff/style_159303.woff') format('woff'),
url('webfonts/ttf/style_159303.ttf') format('truetype'),
url('webfonts/svg/style_159303.svg#MuseoSans-500') format('svg');}

在此处输入图像描述

Possible Duplicate:
css @font-face not working with Firefox, but working with Chrome and IE

I have a little problem and can't seem to figure out what the solution is.

I'm using Museo as a webfont. In Safari everything works like a charm, but in Firefox it doesn't work.
Does anyone have any clue why?

@font-face {font-family: 'MuseoSans-500';
src: url('webfonts/eot/style_159303.eot');
src: url('webfonts/eot/style_159303.eot?#iefix') format('embedded-opentype'),
url('webfonts/woff/style_159303.woff') format('woff'),
url('webfonts/ttf/style_159303.ttf') format('truetype'),
url('webfonts/svg/style_159303.svg#MuseoSans-500') format('svg');}

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

盛夏尉蓝 2024-12-04 19:45:04

我不确定你的 @font-face 设置到底出了什么问题,但我已经让 Museo 使用 @font-face 在 FireFox 中工作。我建议使用 Font Squirrel 的 @font-face 生成器 生成 CSS 声明和不同的字体文件自动为所有主要浏览器设置一切。

I'm not sure what exactly is wrong with your @font-face setup, but I've gotten Museo working in FireFox using @font-face. I'd recommend generating the CSS declarations and different font files using Font Squirrel's @font-face generator which automatically sets everything up for all major browsers.

梦行七里 2024-12-04 19:45:04

如果您无法使其正常工作,并且字体不必完全相同,也许您应该看看Google 字体 API。只需从列表中选择一种字体(“Ovo”或“Forum”看起来与您的非常相似),然后导入在您的网站中使用

<link rel="stylesheet" 
      type="text/css" 
      href="http://fonts.googleapis.com/css?family=Font+Name">

...,然后将其用作 CSS 中的常规字体:

body {
  font-family: 'Font Name', Verdana;
}

它最好的一点是,它很简单:它甚至可以与 IE6 一起使用。

If you can't get it working and the font doesn't have to be exactly the same, maybe you should have a look at the Google font API. Just choose a font from the list ('Ovo' or 'Forum' look quite similar to yours), import it in your website with

<link rel="stylesheet" 
      type="text/css" 
      href="http://fonts.googleapis.com/css?family=Font+Name">

...and then use it as a regular font in your CSS:

body {
  font-family: 'Font Name', Verdana;
}

The best about it, besides that it's that easy: It even works with IE6.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文