首页 >web前端 >css教程 >如何将 Bootstrap 列中的内容居中?

如何将 Bootstrap 列中的内容居中?

Patricia Arquette
Patricia Arquette原创
2024-10-30 06:46:27528浏览

How to Center Content in a Bootstrap Column?

将内容在 Bootstrap 列中居中

您在将内容在 Bootstrap 列中居中时遇到困难。您提供的 HTML 包括以下内容:

<code class="html"><div class="row">
   <div class="col-xs-1 center-block">
       <span>aaaaaaaaaaaaaaaaaaaaaaaaaaa</span>
   </div>
</div></code>

解决方案:

问题在于“center-block”类的使用。当前版本的 Bootstrap 不再支持此类。相反,您应该使用以下方法之一:

Bootstrap 3 之前:

使用“align”属性:

<code class="html"><div class="col-xs-1" align="center"></code>

引导程序 3 和 4:

使用“文本中心”类:

<code class="html"><div class="col-xs-1 text-center"></code>

引导程序 4:

使用弹性类:

<code class="html"><div class="d-flex justify-content-center">
   <div>some content</div>
</div></code>

注意: Bootstrap 4 默认情况下水平对齐内容。对于垂直对齐,请在父元素上使用“flex-direction:column”。

以上是如何将 Bootstrap 列中的内容居中?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn