我需要帮助来解决问题,我需要将内容集中在bootstrap4中的列中,请在下面找到我的代码
<div class="container"> <div class="row justify-content-center"> <div class="col-3"> <div class="nauk-info-connections"> </div> </div> </div>@H_404_3@
解决方法
Bootstrap 4中有多种水平居中方法……
>中心显示的文本中心:内联元素
> offset- *或mx-auto可用于中心列(col- *)
>或者,在行到中心列上对齐内容 – 中心(col- *)
> mx-auto用于居中显示:d-flex内的块元素
mx-auto(自动x轴边距)将居中显示:块或显示:具有已定义宽度的flex元素(%,vw,px等)。默认情况下,FlexBox在网格列上使用,因此还有各种flexBox居中方法。
Demo of the Bootstrap 4 Centering Methods
在您的情况下,使用mx-auto将col-3和文本中心居中以使其内容居中。
<div class="row"> <div class="col-3 mx-auto"> <div class="text-center"> center </div> </div> </div>@H_404_3@http://www.codeply.com/go/GRUfnxl3Ol
或者,在flexBox元素(.row)上使用justify-content-center:
<div class="container"> <div class="row justify-content-center"> <div class="col-3 text-center"> center </div> </div> </div>@H_404_3@