gpt4 book ai didi

html - 在段落内完美对齐 Bootstrap 徽章

转载 作者:行者123 更新时间:2023-11-28 00:21:48 25 4
gpt4 key购买 nike

在下图中,您可以看到添加徽章会导致徽章上方的间距大于下方的间距。 Bootstrap 4 代码是干净的,没有掺假,所以不幸的是这不是开箱即用的。我试着弄乱边距和行高,但一个小时后我放弃了。

<nav class="bg-dark text-white py-1 sticky-top">
<div class="container">
<p class="text-center w-100 mb-0">
<b>
<a class="link-unstyled" target="_blank" href="#">
Find nearby hearing aid deals
</a>
</b>
<span class="badge badge-success">
New
</span>
</p>
</div>
</nav>

enter image description here我有以下 fiddle 来说明问题。

https://jsfiddle.net/funkdified/t4xdhuo7/2/

最佳答案

你只需要将 .justify-content-center.align-items-center 添加到 .row 元素中,然后将完美对齐并在内部居中。

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<nav class="bg-dark text-white py-1 sticky-top">
<div class="container">
<div class="row w-100 mb-0 justify-content-center align-items-center">
<b>
<a class="link-unstyled" target="_blank" href="https://www.hearingtracker.com/hearing-aids/deals">
Find nearby hearing aid deals
</a>
</b>
<span class="badge badge-success ml-1">
New
</span>
</div>
</div>
</nav>

关于html - 在段落内完美对齐 Bootstrap 徽章,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54848346/

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