在 html 中呈现矢量/字体的最佳方式是什么?
问问题
1032 次
2 回答
0
在网站中使用自定义字体最好的是 CSS3。例子:
@font-face { font-family: 'GoodFootRegular';
src: url('goodfoot.eot');
src: local('Good Foot'), local('GoodFoot'), url('goodfoot.woff') format('woff'), url('goodfoot.ttf') format('truetype');}
.classname{ font:21px bold normal GoodFootRegular;}
于 2012-05-08T07:34:07.153 回答