以下@font-face 声明在 Firefox (Mac) 上运行良好,但在 Safari/WebKit 上运行良好:
@font-face {
font-family:MyGaramond;
src:local("Garamond Premier Pro"), /* Full name */
local("GaramondPremrPro"), /* Postscript name */
url("GaramondPremrPro.otf") format("opentype"); /* Fallback */
}
h2 {
font-family:MyGaramond, sans-serif !important;
}
为了澄清,我也试过:
@font-face {
font-family:MyGaramond;
src:local("Garamond Premier Pro"), /* Full name */
local("GaramondPremrPro"), /* Postscript name */
url("GaramondPremrPro.otf"); /* Fallback */
}
h2 {
font-family:MyGaramond, sans-serif !important;
}
, 带/不带引号等。
有没有其他人经历过这种情况,如果有,你是如何解决的?这不起作用真是令人困惑(而且有点恼人......)。