CSS 使用@ font-face

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 使用@ font-face相关的知识,希望对你有一定的参考价值。

/* This was updated Feburary 10th, 2011 to be the cleanest and most compatible way to embed custom fonts. */

@font-face {
	font-family: 'MyFontFamily';
	src: url('myfont-webfont.eot?') format('eot'),
		 url('myfont-webfont.woff') format('woff'),
		 url('myfont-webfont.ttf')  format('truetype'),
		 url('myfont-webfont.svg#svgFontName') format('svg');
}

/* Usage */

body {
	font-family: 'MyFontFamily', Fallback, sans-serif;
}

以上是关于CSS 使用@ font-face的主要内容,如果未能解决你的问题,请参考以下文章

使用 CSS @font-face 时,浏览器使用不同类型的顺序是啥?

css 使用@ font-face

CSS 使用@ font-face

在 CSS 中使用多个 @font-face 规则

css3中@font-face模块自定义字体

CSS 我使用的@ Font-Face片段