gpt4 book ai didi

html - Bootstrap 4 - 带按钮标签的中心文本

转载 作者:太空宇宙 更新时间:2023-11-03 20:06:19 25 4
gpt4 key购买 nike

我想实现一个非常简单的目标:我有一行 - 文本左对齐,按钮右对齐。我希望文本与按钮的标签垂直对齐。我试着玩填充,边距,......但没有任何效果。我相信我缺少一个简单而聪明的解决方案。

Plunker 演示:

https://plnkr.co/edit/KwRF2uOmKc3aPFQW9DXn?p=preview

<div>
<span>
This text should match the "Submit" text
</span>
<button type="button" class="btn btn-secondary float-right">Submit</button>
</div>

感谢您的回答。

最佳答案

Bootstrap 4 基于 flexbox,因此已经有用于应用这些对齐实用程序的类。 d-flex 使容器成为 flex 容器,align-items-center 进行垂直对齐。尝试类似的东西:

<div class="d-flex align-items-center">
<span>
This text should match the "Submit" text
</span>
<button type="button" class="btn btn-secondary ml-auto">Submit</button>
</div>

关于html - Bootstrap 4 - 带按钮标签的中心文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47423258/

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