gpt4 book ai didi

html -

未在容器中心对齐自身

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

,并且都在一个容器中。我使用 align-items-center 将它们全部对齐在容器内的同一行中。但是,该属性不适用于

标记。我错过了什么?我希望“或”与注册和登录按钮对齐。

nav ul{
padding: 0;
display: flex;
margin-bottom: 0;
}
nav li{
list-style: none;
padding: 0 0.2em;
}
nav a{
text-decoration: none;
}
#login{
display: inline-block;
min-width: max-content;
max-height: min-content;
margin: 0;
}
<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>
<div class="container d-flex align-items-center justify-content-between ">
<div class="container d-flex align-items-center ">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">About Us</a></li>
</ul>
</div>
<div class="container-flex d-flex align-items-center">
<a href="#" style="white-space: nowrap">Sign up</a>
<p style="padding-right: 0.5em; padding-left: 0.5em;"> or </p>
<button class="btn btn-success btn-md" id="login">Log in</button>
</div>
</div>
</nav>

最佳答案

Bootstrap 4 段 <p>有底边距。使用 mb-0类删除它。

<p style="padding-right: 0.5em; padding-left: 0.5em;" class="my-0"> or </p>

https://www.codeply.com/go/n337ATFcOh


使用 Bootstrap Navbar or Nav 可以大大简化标记和 CSS .也没有理由使用 nested containers .

https://www.codeply.com/go/ZiTM3iuHrd

关于html - <p> 未在容器中心对齐自身,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55514377/

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