关于 自定义字体
Posted justsmile2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于 自定义字体相关的知识,希望对你有一定的参考价值。
1.看法
不推荐使用:存在版权问题、字体文件过大问题、多浏览器兼容问题、潜在问题(比如应用上去了某些汉字会排列错乱)
2.用法
<html> <head> <title>Web Font Sample</title> <style type="text/css" media="screen, print"> @font-face { font-family: "Bitstream Vera Serif Bold"; src: url("http://developer.mozilla.org/@api/deki/files/2934/=VeraSeBd.ttf"); } body { font-family: "Bitstream Vera Serif Bold", serif } </style> </head> <body> This is Bitstream Vera Serif Bold. </body> </html>
以上是关于关于 自定义字体的主要内容,如果未能解决你的问题,请参考以下文章