我给gridview
提供了一个在所有系统中都不存在的字体。如果有一种方法可以将字体放在项目文件夹中,所有用户都可以看到它而不用它吗?
答案 0 :(得分:0)
一种选择是使用@font-face
CSS属性来指定自定义字体:
http://return-true.com/2010/05/css-3-custom-fonts-using-font-face/
@font-face {
font-family: myCustomFont;
src: url(path/to/my/font);
}
.gridViewClass
{
font-family: myCustomFont;
}