gpt4 book ai didi

html - 如何在 bootstrap 4 中使子内容相对于父容器垂直居中

转载 作者:太空宇宙 更新时间:2023-11-04 01:06:55 25 4
gpt4 key购买 nike

我一直在尝试让我的子内容按照父容器垂直居中。但是子容器总是相对于父容器的。下面是我试过的代码:

HTML

<section id="welcome" class="bg-primary d-flex flex-column">
<h1>Positions</h1>
<div class="container text-center my-auto">
Centered content
</div>
</section>

CSS

      #welcome{
min-height:150px;
width: 200px;
}

我正在寻找的是根据整个部分使居中内容文本垂直居中。

这是代码笔链接:CodePen

最佳答案

只需制作 h1 position-absolute 即可将其从 DOM 中的相对定位中移除...

https://codepen.io/anon/pen/EeVXbe

<section id="welcome" class="bg-primary d-flex flex-column">
<h1 class="position-absolute">Positions</h1>
<div class="container text-center my-auto">
Centered content
</div>
</section>

关于html - 如何在 bootstrap 4 中使子内容相对于父容器垂直居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51995615/

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