我在布局中使用Metro UI项目。我也将awesome字体添加到我的项目中,但是当我同时使用metroawesome字体时,会出现一些问题:

<div class="tile-content icon">
    <span>
        <i class="fa fa-ticket fa-fw"></i>
    </span>
</div>

我想将fa图标设置为Metro UI标题,但是运行代码时,我无法从标题中看到该图标:

如果我只添加以下内容:
<i class="fa fa-ticket fa-fw"></i>

一切都很好...有人可以帮助我吗?

最佳答案

我有同样的问题。您需要“强制”使用真棒字体:

.fa {
  display: inline-block;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

该块位于font-awesome.css文件中,您需要添加!important,以便Metro UI不会覆盖它。
如果您不希望/无法编辑原始CSS文件,则还应该能够通过将以下内容添加到自己的CSS文件中来解决此问题:
.fa {
  font-family: FontAwesome !important;
}

造成这种问题的原因是,Metro UI CSS中的一种样式确实覆盖了图块的font-family样式,因此默认情况下不再使用真棒字体。

关于c# - Metro UI CSS字体超赞,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23648905/

10-17 00:06