首頁 > web前端 > css教學 > 如何將 Bootstrap 欄位中的內容置中?

如何將 Bootstrap 欄位中的內容置中?

Patricia Arquette
發布: 2024-10-30 06:46:27
原創
523 人瀏覽過

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>
登入後複製

<code class="html"><div class="col-xs-1 text-center"></code>
登入後複製

<code class="html"><div class="d-flex justify-content-center">
   <div>some content</div>
</div></code>
登入後複製

引導程式3 與4:

使用「文字中心」類別:引導程式4:使用彈性類別:注意: Bootstrap 4 預設水平對齊內容。對於垂直對齊,請在父元素上使用“flex-direction:column”。

以上是如何將 Bootstrap 欄位中的內容置中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板