レール上の@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;
}
これは正しいのだろうか、
どんな提案でも大歓迎です、ありがとう