我要删除导航栏上按钮之间的空格。有帮助吗?
我尝试在-->
标签之间使用<!--
和<li>
,但是并没有删除导航栏上我的按钮之间的空格。
导航栏上的按钮之间仍然有空格。
nav {
height: 10vh;
background: red;
background-image: linear-gradient(to left, red, red, black);
.btn {
border: none;
border-radius: 0px;
background-color: inherit;
color: white;
padding: 23px 33px;
cursor: pointer;
transition: 0.5s;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
display: block;
}
.btn:hover {
background: black;
}
.nav-links {
display: flex;
list-style: none;
width: 50%;
weight: 100%;
justify-content: space-around;
align-items: center;
margin-left: auto;
}
.nav-links li a {
color: white;
text-decoration: none;
font-size: 20px;
}
<ul class="nav-links">
<li><button class="btn About"><a href="https://www.tsn.ca">About</a></button></li>
<li><button class="btn Our Team"><a href="#">Our Team</a></button></li>
<li><button class="btn Apps & Games"><a href="#">Apps & Games</a></button></li>
<li><button class="btn Contact"><a href="#">Contact</a></button></li>
</ul>
答案 0 :(得分:0)
我不知道这是否是您想要的,但是您可以简单地从justify-content: space-around;
中删除.nav-links
。它将消除它们之间的空间。
justify-content: space-around;
用于在div
宽度内均匀地分布元素,从而产生“额外”空间的感觉。
让我知道这是否有帮助。