4

我使用了很棒的字体图标,效果很好。当我需要更多图标时,我下载了打开的 Web 图标。现在我将 openweb 图标复制到我的项目及其相关的 css 中。

字体真棒css有一些这样的规则..

[class^="icon-"],
[class*=" icon-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
}

OpenWeb 图标 css 有一些这样的规则..

    [class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: 'OpenWeb Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    vertical-align: center;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased
}

所以现在,图标类以“icon-”开头

例子<i class="icon-geo"></i>

现在“icon-”会产生冲突,因为两个图标都基于它制定了自己的规则。我可以在 bugzilla 中看到它。如果我评论了它的字体系列之一,其他字体也可以使用。

我应该如何克服这个问题..

4

1 回答 1

3

使用不同的标识符为类添加前缀/后缀很容易:

[class^="iconOW-"]:before, [class*=" iconOW-"]:before {
             ^^                          ^^
font-family: 'OpenWeb Icons';
font-weight: normal;
font-style: normal;
display: inline-block;
text-decoration: inherit;
vertical-align: center;
font-smoothing: antialiased;
-webkit-font-smoothing: antialiased
}

然后,您可以根据需要从不同的班级中包含它们。

您可能需要考虑许多网络字体整合服务 - fontello.com就是其中之一,它允许您组合不同的图标字体(类似于并包括font-awesome),但目前不包括您正在使用的开放式 Web 图标字体。

对它们进行 Ping,它们很可能会包含它 - 考虑到字体集提供的值!

于 2013-10-22T01:10:48.990 回答