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

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

Patricia Arquette
发布: 2024-10-30 06:46:27
原创
557 人浏览过

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板