如何在 Rails 上使用 @font-face 嵌入字体:
我的字体位于:
/vendor/assets/stylesheets/fonts/ custom-font-lists-here .eot
我的包含@font-face 的样式表在里面:
/vendor/assets/stylesheets/fonts.css
我现在正在使用这个
@font-face {
font-family: 'ArimoRegular';
src: url('<%= asset_path('fonts/arimo-regular-webfont.eot') %>');
src: url('<%= asset_path('fonts/arimo-regular-webfont.eot') %>'+'?#iefix') format('embedded-opentype'),
url('<%= asset_path('fonts/arimo-regular-webfont.woff') %>') format('woff'),
url('<%= asset_path('fonts/arimo-regular-webfont.ttf') %>') format('truetype'),
url('<%= asset_path('fonts/arimo-regular-webfont.svg') %>#ArimoRegular') format('svg');
font-weight: normal;
font-style: normal;
}
我想知道这是否正确,
欢迎任何建议,谢谢