如何使用在軌道上的@ font-臉emebed字體:資產管道和@字體面在軌道(軌道3.2.3)
我的字體位於:
/供應商/資產/樣式/字體/ 自定義字體列表,在這裏 .eot
我的樣式表,它包含一個@字體面內:
/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;
}
我不知道這是否是正確的,
任何建議,歡迎, 謝謝
我修改fonts.css.rb,仍然不起作用。順便說一句,謝謝你的回覆。 –
我剛剛修改了我的答案......當你有一分鐘時看看。希望有所幫助! –
'assets/fonts'只能在'app'和'lib'中使用,但不能在'vendor'中使用 – sandstrom