gpt4 book ai didi

css - 显示 flex 和垂直居中对齐,而不并排移动内容?

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

假设我将这个元素居中对齐,但我不想并排堆叠。我希望“关于我们”标题在段落上方对齐,而不是并排放置。有没有办法将这些内容对齐到中心,但仍然使用 flex box 作为其调整方式?

所以它应该喜欢...

About Us
Paragraph.

不像...

About us Paragraph

flex box 可以在不将内容相互移动的情况下做到这一点吗?我知道这就是 flex box 的目的。

.list {
float:left;
height: 250px;
background-color: blue;
width: 50%;
margin: 15px;
}

.about {
display: flex;
align-items: center;
height: 250px;
]
<div class="list">
<img class="img-fluid rounded" src="some/image" alt="">
<img class="img-fluid rounded" src="some/image" alt="">
</div>
<div class="about">
<h2 class="mb-4 header-main">About Us text</h2>
<p>Some text here</p>
</div>

最佳答案

更改 direction到专栏:

.list {
float:left;
height: 250px;
background-color: blue;
width: 50%;
margin: 15px;
}

.about {
display: flex;
flex-direction:column;
justify-content: center;
height: 250px;
]
<div class="list">
<img class="img-fluid rounded" src="some/image" alt="">
<img class="img-fluid rounded" src="some/image" alt="">
</div>
<div class="about">
<h2 class="mb-4 header-main">About Us text</h2>
<p>Some text here</p>
</div>

关于css - 显示 flex 和垂直居中对齐,而不并排移动内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51217582/

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