gpt4 book ai didi

css - 如何在 Bootstrap 中使用垂直对齐

转载 作者:数据小太阳 更新时间:2023-10-29 09:10:44 26 4
gpt4 key购买 nike

简单问题:如何使用 bootstrap 在一个列中垂直对齐一个列?这里的示例(我想垂直对齐 child1a 和 child1b):

http://bootply.com/73666

HTML

<div class="col-lg-12">

<div class="col-lg-6 col-md-6 col-12 child1">
<div class="col-12 child1a">Child content 1a</div>
<div class="col-12 child1b">Child content 1b</div>

</div>


<div class="col-lg-6 col-md-6 col-12 child2">
Child content 2<br>
Child content 2<br>
Child content 2<br>
Child content 2<br>
Child content 2<br>

</div>

</div>

更新

一些CSS:

.col-lg-12{
top:40px;
bottom:0px;
border:4px solid green;


}

.child1a, .child1b{
border:4px solid black;
display:inline-block !important;
}

.child1{
border:4px solid blue;
height:300px;
display:table-cell !important;
vertical-align:middle;
}

.child2{
border:4px solid red;
}

最佳答案

.parent {
display: table;
table-layout: fixed;
}

.child {
display:table-cell;
vertical-align:middle;
text-align:center;
}

table-layout: fixed 防止破坏 col-* 类的功能。

关于css - 如何在 Bootstrap 中使用垂直对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18192114/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com