gpt4 book ai didi

css - 使用flexbox对齐2个div : one center-center and the other bottom center

转载 作者:行者123 更新时间:2023-11-28 11:30:47 24 4
gpt4 key购买 nike

<分区>

我正在尝试使用 flexbox 将其父级中的两个 div 对齐,一个完全居中,另一个底部居中。他们都共享相同的父 div。结果应该是这样的:

------------------------
| |
| |
| |
| |
| ------ |
| | b1 | |
| | | |
| ------ |
| |
| ------ |
| | b2 | |
| ------ |
------------------------

这是我目前所拥有的:

div {
box-sizing: border-box;
border: 1px black solid;
}

.text-center{
text-align:center;
}

.flex-wrap {
width:400px;
height: 400px;
background: #ddd;
display: flex;
align-items: flex-start;
}

.flex-centered {
align-self: center;
}

.flex-bottom-center {
align-self: flex-end;
}
<div class="flex-wrap">
<div class="flex-centered text-center">
Here is some text for the center
</div>

<div class="flex-bottom-center text-center">
Here is some text for the bottom center
</div>
</div>

看起来差不多了,但是第一个盒子是左对齐的,而底部是右对齐的。

有人能帮忙吗?

编辑:这与将我的标记为重复时引用的问题不同:该问题询问如何使底部 div 与中心等距 div 和底部。我的问题是如何将底部 div 放在容器的底部。

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