css – bootstrap Glyphicons

前端之家收集整理的这篇文章主要介绍了css – bootstrap Glyphicons前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_502_1@引导css使用从 Glyphicons半身。
如果我购买了他们的完整产品线,我将如何将其纳入引导框架?

解决方法

你必须重新计算每个字形图标的背景定位到你自己的类或重写已经由引导设置的类为了工作他们。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;
}
原文链接:https://www.f2er.com/css/223510.html

猜你在找的CSS相关文章