0

这些图标在 Chrome/Firefox 版本中运行良好,但由于某种原因无法在任何版本的 IE 中运行。不知道为什么会这样 - 我确信它一定是我缺少的一些简单的东西。带有代码的 URL 在这里:它们使用@font-face 提供服务,据我所知,路径是正确的。

http://rational-animal.co.uk/elusive

谢谢!

4

1 回答 1

2

终于找到答案了 是 bootstrap.css 中的 glyphicons 代码覆盖了难以捉摸的图标。以此开头和之后的所有代码:

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("../img/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
}

需要删除才能使其工作。

于 2013-04-22T09:42:18.647 回答