@ font-family,奇怪的字体名称 - 我可以重命名吗?

时间:2014-02-28 14:49:30

标签: html css ruby-on-rails css3 ruby-on-rails-4

例如,我正在使用04B_19__字体,如果可能的话,我肯定会将其重命名为一个奇怪的名称。以下是我当前代码使用@ font-family实现它的方式:

@font-face {
  font-family: '04B_19__';
  src: url('<%= font_path('04b_19__-webfont.eot') %>');
  src: url('<%= font_path('04b_19__-webfont.eot') %>t') format('embedded-opentype'),
  url('<%= font_path('04b_19__-webfont.woff') %>') format('woff'),
  url('<%= font_path('04b_19__-webfont.ttf') %>') format('truetype'),
  url('<%= font_path('04b_19__-webfont.svg#04B_19__') %>') format('svg');
}

将字体重命名为更通用的最佳方式是什么,例如:“boxy-font”。

1 个答案:

答案 0 :(得分:3)

font-family只是您分配给该字体文件集合的名称。

您可以将其更改为:

@font-face {
  font-family: 'boxy-font';
  src: url('<%= font_path('04b_19__-webfont.eot') %>');
  src: url('<%= font_path('04b_19__-webfont.eot') %>t') format('embedded-opentype'),
  url('<%= font_path('04b_19__-webfont.woff') %>') format('woff'),
  url('<%= font_path('04b_19__-webfont.ttf') %>') format('truetype'),
  url('<%= font_path('04b_19__-webfont.svg#04B_19__') %>') format('svg');
}

一切都会正常。