我在Bootstrap 4的一行中有两列。 如果我尝试使用行上的align-items-center或col上的align-self-center垂直对齐内容,则h4居中,但背景不是全高。 这是一支笔 https://codepen.io/geo555/pen/PyaLbE
ABCD,2014-10-31,815.90,2018-07-27,1073.60,856.65,2014-11-14;
答案 0 :(得分:0)
设为d-flex flex-column
并在标题上使用垂直自动边距(my-auto
)...
<div class="container">
<div class="row no-gutters justify-content-center">
<div class="col-sm-4">
<img src="https://via.placeholder.com/400X400" class="img-fluid">
</div>
<div class="col-sm-4 border text-center bg-dark text-white d-flex flex-column">
<h4 class="my-auto">Awesome desk</h4>
</div>
</div>
</div>