1

作業中の css ファイル (font-squirrel によって生成) から:

@font-face {
  font-family: 'SnowTopCaps';
  src: url('/fonts/snowtopcaps-webfont.eot');
  src: url('/fonts/snowtopcaps-webfont.eot?#iefix') format('embedded-opentype'),
    url('/fonts/snowtopcaps-webfont.woff') format('woff'),
    url('/fonts/snowtopcaps-webfont.ttf') format('truetype'),
    url('/fonts/snowtopcaps-webfont.svg#snowtopcaps') format('svg');
  フォントの太さ: 通常;
  フォント スタイル: 通常;
}     

styleドキュメントのセクションで宣言しようとしていjadeます:

...
スタイル
  @font-face
    フォントファミリー
      | | スノートップキャップ
    ソース
      | | URL('/fonts/snowtopcaps-webfont.woff') format('woff')
    フォントの太さ
      | | 正常
    フォントスタイル
      | | 正常
    ...

しかし、style宣言は生成されたhtml?に書き込まれません。

ここに何が欠けているか誰にもわかりますか?

4

1 に答える 1

2

この構文は HTML 用であり、css 用ではありません。使用する

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

または、:stylus フィルターを使用します。

于 2013-03-22T15:47:09.693 に答える