0

我已经从http://www.dafont.com/sansation.fontSansation下载了字体现在我想将所有样式等编译到一个文件中,并通过 css 嵌入这个字体,比如regular, italic, bold

@font-face {
    font-family: 'Sansation';
    src: url('Sansation.eot');
    src: url('Sansation.eot?#iefix') format('embedded-opentype'),
         url('Sansation.woff') format('woff'),
         url('Sansation.ttf') format('truetype'),
         url('Sansation.svg#BitstreamVeraSerifBold') format('svg');
    font-weight: normal;
    font-style: normal;
}

Sansation 字体

Sansation_Bold.ttf
Sansation_Bold_Italic.ttf
Sansation_Italic.ttf
Sansation_Light.ttf
Sansation_Light_Italic.ttf
Sansation_Regular.ttf

我找到了将ttf字体转换为eot, woff, svg但需要将所有样式编译成单一ttf字体的工具。

谷歌搜索但不幸的是没有成功。谁能帮我这个?

4

1 回答 1

0

我认为这是不可能的...您将用每种连续的字体覆盖每种字体样式/粗细的字符...您可以将它们全部添加到样式表中,这样您只需命名一种字体-家族在你的字体声明中......是你想要的吗?

于 2013-11-21T18:06:47.937 回答