如何在Font Awesome中叠加/重叠2个以上的图标?
我设法堆叠/重叠了2个这样的图标。
<span class="fa-stack fa-lg">
<i class="fa fa-square-o fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x"></i>
</span>
http://jsfiddle.net/npLWz/ 参考:http://fontawesome.io/examples/#stacked
但是当我尝试堆叠/重叠3个或更多这样的图标时。
<span class="fa-stack fa-3x">
<i class="fa fa-square-o fa-stack-3x"></i>
<i class="fa fa-square-o fa-stack-2x"></i>
<i class="fa fa-square-o fa-stack-1x"></i>
</span>
它搞砸了,任何想法,我该如何解决? 并获得3个或更多图标相互堆叠/重叠。
答案 0 :(得分:19)
我有一个类似的问题,并使用一些自定义CSS解决。
.icon-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle;
}
.icon-stack-1x,
.icon-stack-2x,
.icon-stack-3x {
position: absolute;
left: 0;
width: 100%;
text-align: center;
}
.icon-stack-1x {
line-height: inherit;
}
.icon-stack-2x {
font-size: 1.5em;
}
.icon-stack-3x {
font-size: 2em;
}
因此标记是:
<span class="icon-stack fa-3x">
<i class="fa fa-{{whatever icon 3}} icon-stack-3x"></i>
<i class="fa fa-{{whatever icon 2}} icon-stack-2x"></i>
<i class="fa fa-{{whatever icon 1}} icon-stack-1x"></i>
</span>
我决定不重写fa-stack我会复制,所以如果需要,我仍然可以使用原始CSS。
显然,您可以根据自己的要求使用字体大小,行高等。
答案 1 :(得分:0)
此功能当前由 fontawesome 提供。
请参阅:https://fontawesome.com/how-to-use/on-the-web/styling/stacking-icons
答案 2 :(得分:0)
最后,发布了 Font-Awesome 的一项新功能,现在您可以堆叠2个以上的图标:
请参见以下链接:https://fontawesome.com/how-to-use/on-the-web/styling/layering