gpt4 book ai didi

html - 带有 CSS 的动态居中标题栏

转载 作者:行者123 更新时间:2023-11-28 10:27:31 28 4
gpt4 key购买 nike

目前我有这个标题栏

#header {
display: flex;
align-items: center;
height: 60px;
background: gray;
}

.box {
width: 32px;
height: 32px;
margin: 0 5px;
background: red;
}
<div id="header">
<div class="box">1</div>
<div class="box">2</div>
<div class="box">3</div>
</div>

我希望容器在父容器的中心对齐。

enter image description here

如您所见,在添加更多 div 或删除其中一些时,我总是希望栏居中。

最佳答案

添加 justify-content: space-around 规则:

#header {
display: flex;
align-items: center;
height: 60px;
background: gray;
justify-content: space-around;
}

.box {
width: 32px;
height: 32px;
margin: 0 5px;
background: red;
}
<div id="header">
<div class="box">1</div>
<div class="box">2</div>
<div class="box">3</div>
</div>

关于html - 带有 CSS 的动态居中标题栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49694421/

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