解决方法
你必须重新计算每个字形图标的背景定位到你自己的类或重写已经由引导设置的类为了工作他们。Twitter的引导使用的图标的半边(免费)版本是14px四周,全集是双倍的大小,所以旧的背景位置的不会工作。
下面是一个引导图标类的示例:
/* class for the icon "fast-backward",notice the positioning values set in pixels */ .icon-fast-backward { background-position: -216px -72px; } /* main class,defining what icon sheet to use */ [class^="icon-"],[class*=" icon-"] { background-image: url("../img/glyphicons-halflings.png"); background-position: 14px 14px; background-repeat: no-repeat; display: inline-block; height: 14px; line-height: 14px; vertical-align: text-top; width: 14px; }