我正在尝试将引导程序3图标对齐到按钮内部并且它们正在向右对齐,但仅在IE 8中。这是我的代码:
<button class="btn btn-success btn-circle btn-lg" type="button">
<i class="fa fa-trophy" style="font-size:30px;"></i>
</button>
I have tried adding margin-right:-5px to the style inside
<i class="fa fa-trophy" style="font-size:30px;"></i>
但这不起作用。这就是它现在在IE8中的样子。
答案 0 :(得分:0)
尝试将此添加到您的CSS:
.fa {position: relative; left: -5px\9}