gpt4 book ai didi

CSS:如何垂直对齐 div 内的元素与 display: table-cell

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

我想在一个 div 中垂直对齐两个按钮和一个 span。 div 有:

display: table-cell

我不知道该怎么做。我有这个 Fiddle和你一样可以看到元素水平对齐。我需要他们垂直对齐。

我该怎么做?

最佳答案

按钮的默认显示值是display: inline-block

将按钮设置为 display: block 以覆盖整个宽度并将它们与 margin: 0 auto 居中对齐。

.postcard-left-menu {
display: table;
position: absolute;
left: 0;
width: 10%;
height: 100%;
background-color: #57D5B8;
}
.postcard-left-menu-buttons {
display: table-cell;
vertical-align: middle;
margin-left: auto;
margin-right: auto;
text-align: center;
height: 50%;
background-color: red;
}
.postcard-left-menu-buttons .button {
font-size: 25px;
color: white;
display: block;
margin: 0 auto;
}
.postcard-left-menu-buttons span {
font-size: 25px;
color: white;
}
<div class="postcard-left-menu">
<div class="postcard-left-menu-buttons">
<button class="button">-</button>
<span>1</span>
<button class="button">+</button>
</div>
</div>

关于CSS:如何垂直对齐 div 内的元素与 display: table-cell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32234064/

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