gpt4 book ai didi

html - 垂直对齐 Bootstrap 样式标签和链接中的文本

转载 作者:行者123 更新时间:2023-11-28 14:50:09 25 4
gpt4 key购买 nike

我尝试使用 bootstrap 按钮样式的标签和链接,其高度高于默认值,并且文本在按钮的上侧垂直对齐。如果我对实际的按钮元素执行相同操作,它会垂直居中。

如何让文本垂直居中?

<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"/>

<label class="btn btn-primary" style="height: 80px; margin-bottom: 0">Label Button</label>
<a href="#" class="btn btn-primary" style="height: 80px; margin-bottom: 0">Link Button</a>
<button class="btn btn-primary" style="height: 80px">Actual Button</button>

最佳答案

只需将这一行添加到按钮的类中:

line-height: 60px;

或者你可以这样做:

display: inline-flex;
align-items: center;

如以下片段所示。

<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"/>

<label class="btn btn-primary" style=" display: inline-flex;
align-items: center;
height: 80px; margin-bottom: 0">Label Button</label>
<a href="#" class="btn btn-primary" style="line-height: 60px; height: 80px; margin-bottom: 0">Link Button</a>
<button class="btn btn-primary" style="height: 80px">Actual Button</button>

关于html - 垂直对齐 Bootstrap 样式标签和链接中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51760128/

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