如何使用较大的图标垂直居中文字? [重复]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用较大的图标垂直居中文字? [重复]相关的知识,希望对你有一定的参考价值。
这个问题在这里已有答案:
我在成功的模式中使用了Font Awesome图标。我想让图标更大,问题是如果我这样做,文本不再垂直居中。
<div class="alert alert-success alert-dismissible">
<span class="fa fa-check-circle" aria-hidden="true" style="font-size: 32px;"></span>
<strong> You have successfully set up an administration for this client.</strong>
</div>
答案
你可以使用vertical-align
:
.fa {
vertical-align: middle;
}
或者,使用flexbox:
.alert {
display: flex;
align-items: center;
}
另一答案
看看Text alignment - class="text-center" 和class="align-middle"
<div class="alert alert-success alert-dismissible text-center">
<span class="fa fa-check-circle" aria-hidden="true" style="font-size: 32px;"></span>
<strong class="align-middle"> You have successfully set up an administration for this client.</strong>
</div>
另一答案
Flexbox解决方案
.alert{
display: flex;
align-items: center;
}
希望这可以帮助。
以上是关于如何使用较大的图标垂直居中文字? [重复]的主要内容,如果未能解决你的问题,请参考以下文章