gpt4 book ai didi

html - 如何将按钮旁边的文本居中对齐?

转载 作者:太空狗 更新时间:2023-10-29 14:45:02 26 4
gpt4 key购买 nike

jsFiddle

截图

html

<div class="client-box">
<div class="box-header clearfix">
<h6 class="pull-left">General Information</h6>
<button class="btn btn-small pull-right"><i class="icon-pencil"></i> Edit</button>
</div>
<p>box content</p>
</div>

如何获取 header <h6>相对于“编辑”按钮垂直居中?

vertical-alignbox-header 上不起作用。我不想对行高进行硬编码,因为我可能会在稍后更改按钮大小或其他内容,然后它就会中断。

最佳答案

您可以使用 css display: tabledisplay: table-cellvertical-align: middle

HTML

<div class="box-header clearfix">
<div class="left-cell">
<h6>General Information</h6>
</div>
<div class="right-cell">
<button class="btn btn-small"><i class="icon-pencil"></i> Edit</button>
</div>
</div>

CSS

.box-header {
border-bottom: 1px solid #aac7ef;
padding-bottom: 5px;
display: table;
width: 100%;
}
.left-cell {
display: table-cell;
vertical-align: middle;
}
.right-cell {
display: table-cell;
vertical-align: middle;
text-align: right;
}

Demo

关于html - 如何将按钮旁边的文本居中对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14350976/

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