align-items-center,同时保持背景全高
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了align-items-center,同时保持背景全高相关的知识,希望对你有一定的参考价值。
我在Bootstrap 4中的一行中有两列。如果我尝试使用行上的align-items-center垂直对齐内容,或者在col上对齐 - 自我居中,则h4居中但背景不是全高。这是一支笔https://codepen.io/geo555/pen/PyaLbE
<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 text-center bg-dark text-white align-self-center">
<h4>Awesome desk</h4>
</div>
</div>
</div>
答案
制作col 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>
https://www.codeply.com/go/7nPpNbXHF4
以上是关于align-items-center,同时保持背景全高的主要内容,如果未能解决你的问题,请参考以下文章