gpt4 book ai didi

button - 垂直对齐 :middle for text in button

转载 作者:技术小花猫 更新时间:2023-10-29 11:06:09 25 4
gpt4 key购买 nike

我有这样的布局:

layout

我的 CSS:

body {
background: #e2eaed;
}
a {
text-decoration: none;
color: #fff;
font-size: 30px;
height: 62px;
line-height: 62px;
/* vertical-align: middle is not works */
background: #8dc73f;
width: 132px;
padding: 0 25px;
font-size: 16px;
text-align: center;
font-weight: bold;
margin-left: 4px;
display: block;
float: left;
}

当按钮有 1 行文本时,我的代码运行良好。但是当按钮有 2 行文本时,如上图所示。代码文本的高度很大,因为我使用了 line-height 属性。我试过 vertical-align 但它不起作用。

请参阅 jsfiddle .

最佳答案

另一种方法是使用 flexible boxes :

a {
display: inline-flex;
align-items: center; /* cross axis */
justify-content: center; /* main axis */

line-height: 1; /* reset */
}

您可能需要添加前缀,请参阅 browser supportfiddle .

关于button - 垂直对齐 :middle for text in button,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13901569/

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