我使用图标作为标签,但我看到了这个网站:www.fontello.com
您可以在其中创建带有图标的字体。
但是当我用图标创建字体时,它比我所有的图标都大,因为有 svg、ttf、woff 和 eot,所有这 4 种字体都比所有 png 图标都大。
@font-face {
font-family: 'fonticons';
src: url("../font/fonticons.eot");
src: url("../font/fonticons.eot?#iefix") format('embedded-opentype'), url("../font/fonticons.woff") format('woff'), url("../font/fonticons.ttf") format('truetype'), url("../font/fonticons.svg#fonticons") format('svg');
font-weight: normal;
font-style: normal;
}
我所有的图标都是 optipng 压缩的 .png 图像。
这适用于所有浏览器吗?
那么我为什么要使用这种字体方法呢?
还有什么替代品fontello.com
?