gpt4 book ai didi

html - 如何让按钮中的文字垂直居中?

转载 作者:行者123 更新时间:2023-12-02 20:58:01 27 4
gpt4 key购买 nike

如何让按钮中的文字垂直居中?我想将按钮文本放在垂直中心。

我的代码在这里:

#content {
width: 900px;
margin: 0 auto;
text-align: center;
}
#content .btn {
width: 120px;
height: 40px;
color: white;
line-height: 30px;
}
#content .btn-teacher {
background-color: rgb(120, 144, 156);
}
#content .btn-student {
background-color: rgb(255, 112, 67);
}
<body>
<div id="content">
<button class="btn btn-teacher">I am a teacher</button>
<button class="btn btn-student">I am a student</button>
</div>
</body>

我设置了line-height等于height,为什么文本没有位于垂直中心?

最佳答案

由于 button 元素默认执行此操作,因此只需删除 line-height 即可。

why the text don't locate in the vertical center

如果您要使用行高,并且按钮有 2px 边框并且不使用 border-box ,行高需要为36px。

我还添加了一个 anchor a 元素作为比较。

.content {
width: 900px;
margin: 0 auto;
text-align: center;
margin-bottom: 10px;
}
.content .btn {
width: 120px;
height: 40px;
color: white;
}

.content .btn2 {
width: 120px;
height: 40px;
line-height: 36px;
color: white;
}

.content a.btn {
display: inline-block;
width: 120px;
height: 36px;
line-height: 36px;
border: 2px outset;
color: white;
}

.content .btn-teacher {
background-color: rgb(120, 144, 156);
}
.content .btn-student {
background-color: rgb(255, 112, 67);
}
<body>
<div class="content">
<button class="btn btn-teacher">I am a teacher</button>
<button class="btn btn-student">I am a student</button>
</div>

<div class="content">
<button class="btn2 btn-teacher">I am a teacher</button>
<button class="btn2 btn-student">I am a student</button>
</div>

<div class="content">
<a class="btn btn-teacher">I am a teacher</a>
<a class="btn btn-student">I am a student</a>
</div>
</body>

关于html - 如何让按钮中的文字垂直居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39554194/

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