亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

列內容垂直對齊 - Bootstrap 4

列內容垂直對齊 - Bootstrap 4

慕森王 2023-08-21 17:55:53
我正在嘗試為用戶提交表單時創建一個加載動畫,然后通知他們是否成功或是否有錯誤。我的問題是加載圖標和文本沒有與其所在的 div 中心垂直對齊(col)。我希望將其放在中間,以便我可以在一段時間后用表單提交的響應替換列內容(加載圖標和文本)。我正在使用 Bootstrap 4,并且嘗試了各種不同的代碼,例如align-items-center和my-auto,但沒有成功。<div class="container-fluid h-100 w-100 formSubmitLoad d-flex flex-column" id="loader">    <div class="row justify-content-center align-items-center h-100" id="loadingIcon">        <div class="col-11 col-md-6 text-center bg-primary h-75">            <i class="fas fa-spinner fa-pulse fa-4x"></i>            <h2 class="pt-4">Loading</h2>        </div>        <div class="col-11 col-md-6 text-center bg-primary h-75 d-none">            <!-- Column content to replace above column-->        </div>    </div></div>.formSubmitLoad {  position: fixed;  z-index: 1;  left: 0;  top: 0;  overflow: auto;  color: white;  background-color: rgb(0, 0, 0);  background-color: rgba(0, 0, 0, 0.9);}片段:
查看完整描述

1 回答

?
守候你守候我

TA貢獻1802條經驗 獲得超10個贊

更新您的代碼,如下所示:


.formSubmitLoad {

  color: white;

  background-color: rgba(0, 0, 0, 0.9);

}

<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" >

<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css">

<div class="container-fluid h-100 w-100 formSubmitLoad position-fixed" id="loader">

    <div class="row h-100" id="loadingIcon">

        <div class="m-auto col-11 col-md-6 d-flex flex-column justify-content-center align-items-center bg-primary h-75">

            <i class="fas fa-spinner fa-pulse fa-4x"></i>

            <h2 class="pt-4">Loading</h2>

        </div>


        <div class="m-auto col-11 col-md-6 text-center bg-primary h-75 d-none">

            <!-- Column content to replace above column-->

        </div>

    </div>

</div>


查看完整回答
反對 回復 2023-08-21
  • 1 回答
  • 0 關注
  • 149 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號