gpt4 book ai didi

html - 如何在 li 元素之间设置相等的边距

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

我想在导航中的“Li”元素之间设置相等的边距。现在两者之间略有不同如下图所示的左右边距。

Here is a fiddle link

This is the problem:

这是CSS:

.nav {
background-color: white;
width: 100%;
min-height: 29px;
line-height: 26px;
border-top: solid 1px #999;
border-bottom: solid 2px #333333;
font-weight: bold;
position: relative;
border: none;
font-size: 15px;
font-weight: normal;
}

.nav, .nav ul {
padding: 0;
margin: 0;
list-style: none;
line-height: 2.5;
/* font-size: 13px; */
z-index: 100;
}

.nav li {
float: left;
}

.nav a {
background-color: white;
text-decoration: none;
display: block;
z-index: 9999;
padding-right: 5px;
padding-left: 5px;
}

.nav ul a {
/* border-right: 1px solid #333333; */
text-indent: 4px;
padding-left: 4px;
padding-top: 4px;
padding-bottom: 4px;
width: 6.5em;
line-height: 16pt;
}

.nav > ul > li > a {
width: 6em;
}

最佳答案

删除 <a> 上的宽度元素:

remove these lines

并添加:

.nav li {margin-right: 10px /* or whatever margin you want */}
.nav li:last-child {margin-right: 0}

关于html - 如何在 li 元素之间设置相等的边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29727389/

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