css 自定义字体面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 自定义字体面相关的知识,希望对你有一定的参考价值。
/*
This is the method with the deepest support possible right now.
The @font-face rule should be added to the stylesheet before any styles.
*/
@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
url('webfont.woff') format('woff'), /* Pretty Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
/*
<system.webServer>
<staticContent>
<remove fileExtension=".otf" />
<mimeMap fileExtension=".otf" mimeType="application/font-otf" />
<remove fileExtension=".eot" />
<mimeMap fileExtension=".eot" mimeType="application/octet-stream" />
<remove fileExtension=".ttf" />
<mimeMap fileExtension=".ttf" mimeType="application/font-ttf" />
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
<remove fileExtension=".svg" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
</staticContent>
</system.webServer>
*/
*/
以上是关于css 自定义字体面的主要内容,如果未能解决你的问题,请参考以下文章
为啥自定义字体会移动文本(更改垂直对齐方式)? [复制]
C++11 用户自定义字面值
如何在 Python 中用“”替换我的自定义字符?
自定义字符类
IO流自定义字符数组的拷贝。
Linux内核开发——自定义字符设备