如何使用较大的图标垂直居中文字? [重复]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用较大的图标垂直居中文字? [重复]相关的知识,希望对你有一定的参考价值。

这个问题在这里已有答案:

我在成功的模式中使用了Font Awesome图标。我想让图标更大,问题是如果我这样做,文本不再垂直居中。

enter image description here

<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;
}

jsFiddle

或者,使用flexbox:

.alert {
  display: flex;
  align-items: center;
}

jsFiddle

另一答案

看看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;
}

希望这可以帮助。

以上是关于如何使用较大的图标垂直居中文字? [重复]的主要内容,如果未能解决你的问题,请参考以下文章

实现图标Icon+文字在div里自动中心居中(水平垂直居中)

word将文字设置垂直居中的方法

标题栏中小图标和文字垂直居中的解决办法

在图像上水平和垂直居中(字体真棒)图标[重复]

在word文档中怎么把文字设置成水平与垂直居中?

CSS 代码如何在一个div内让文字垂直居中