私はこのcssをネット上で見つけました、どうやらそれはフォントフェイスのクロスブラウザ互換性を作ります!
@font-face {
font-family: 'Yanone Kaffeesatz Regular';
src: url('fonts/YanoneKaffeesatz-Regular-webfont.eot');
src: url('fonts/YanoneKaffeesatz-Regular-webfont.eot?iefix') format('eot'),
url('fonts/YanoneKaffeesatz-Regular-webfont.woff') format('woff'),
url('fonts/YanoneKaffeesatz-Regular-webfont.ttf') format('truetype'),
url('fonts/YanoneKaffeesatz-Regular-webfont.svg#webfont1BSMunJa') format('svg');
font-weight: normal;
font-style: normal;
}
しかし、.svg#webfont1BSMunJaの最後にあるその変数が何であるかを理解できません。サンプルサイトで使用されているものとは異なるフォントを使用している場合、その最後の部分を変更する必要がありますか?それは何をするためのものか??
そして別の質問は、double src:必要ですか?いくつかの例では、最後にiefixが付いた行が存在しませんでした。
In this resource they state this way of doing thing should work also in ie6-9, but under 9 fonts are not actually loaded. http://www.960development.com/how-to-write-cross-browser-font-face-syntax/