li之间的间距如何去掉?

发布于 2024-10-18 13:40:38 字数 186 浏览 1 评论 0原文

此网站和导航中都有导航标题。正如你所看到的,每个导航标题之间都有一个不必要的空格,我很困惑为什么会这样。查看“类”,导航以更好地了解过多的空间。

我在这方面已经有一段时间了,我想我应该向周围寻求建议或提示。

At this site and within the navigation are nav titles. As you can see there is an unnecessary space between each nav title and I am stumped as to why this is. Check out "classes," nav to get a good view of too much space.

I've been at this for a bit and to the point where I thought I'd ask around for a suggestion or tip.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最单纯的乌龟 2024-10-25 13:40:38
li {
  margin-top:0;
  margin-bottom:0;
  padding-top:0;
  padding-bottom:0;
}

对于另一个

  • 垂直间距调整选项:
  • li {
      line-height:1.2em;
    }
    

    查找任何涉及 height 的内容(即第 324 行):

    li, li a{
      height:32px;
    }
    

    注意:我不确定您的< /em> xmargin xheight 在你的CSS中是用于

    li {
      margin-top:0;
      margin-bottom:0;
      padding-top:0;
      padding-bottom:0;
    }
    

    And for another <li> vertical spacing adjustment option:

    li {
      line-height:1.2em;
    }
    

    Look for anything involving height (i.e. line 324):

    li, li a{
      height:32px;
    }
    

    Note: I'm not sure what your xmargin or xheight in your CSS is for

    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文