Bootstrap - 如何将一个glyphicon置于面板中心?

时间:2015-05-22 15:44:11

标签: css twitter-bootstrap glyphicons

我正在尝试使用Bootstrap 3将一个glyphicon置于面板中心。就目前而言,图标位于面板的左侧。

非常感谢任何建议。

我的代码:

<div class="panel-body">

      <span class="glyphicon glyphicon-asterisk" aria-hidden="true"></span>

1 个答案:

答案 0 :(得分:0)

您可以将Bootstrap的text-center类添加到div:

<div class="panel-body text-center">
      <span class="glyphicon glyphicon-asterisk" aria-hidden="true"></span>
</div>

<强> bootply example