无法获取 CSS 字体
Can't fetch CSS font
@font-face {
font-family: "Gotham";
src: font_path("gotham-rounded-medium.otf") format("opentype");
}
我的 CSS 文件中有这个,但我仍然无法获取字体。有帮助吗?
尝试
@font-face {
font-family: "Gotham";
src: url("gotham-rounded-medium.otf");
}
如果字体文件在您的资产目录中,请尝试
@font-face {
font-family: "Gotham";
src: url('/assets/gotham-rounded-medium.otf') format("opentype");
}
你需要指定 url,而且我相信它是字体路径,而不是 font_path
@font-face {
font-family: "Gotham";
src: url(font-path("gotham-rounded-medium.otf")) format("opentype");
}
更多信息:http://aokolish.me/blog/2011/12/24/at-font-face-with-the-asset-pipeline/
@font-face {
font-family: "Gotham";
src: font_path("gotham-rounded-medium.otf") format("opentype");
}
我的 CSS 文件中有这个,但我仍然无法获取字体。有帮助吗?
尝试
@font-face {
font-family: "Gotham";
src: url("gotham-rounded-medium.otf");
}
如果字体文件在您的资产目录中,请尝试
@font-face {
font-family: "Gotham";
src: url('/assets/gotham-rounded-medium.otf') format("opentype");
}
你需要指定 url,而且我相信它是字体路径,而不是 font_path
@font-face {
font-family: "Gotham";
src: url(font-path("gotham-rounded-medium.otf")) format("opentype");
}
更多信息:http://aokolish.me/blog/2011/12/24/at-font-face-with-the-asset-pipeline/