Superfish - 更改每个按钮之间的空间

发布于 2024-08-31 17:02:36 字数 50 浏览 4 评论 0原文

如何更改 superfish 菜单中每个按钮之间的间距? 我正在使用垂直菜单 css。

How do I change the space between each button of my superfish menu?
I am using the vertical Menu css.

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

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

发布评论

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

评论(1

放低过去 2024-09-07 17:02:36

如果您要寻找的是间隔 Superfish 下拉菜单第一级的项目,只需为 .sf-menu 容器的直接子项添加一些边距即可。像这样的东西应该可以工作 :

ul.sf-menu > li {
margin-right:10px
}

当然,这在 IE 6 上不起作用,所以如果您需要支持 IE 6,您可以使用 :

ul.sf-menu li {
margin-right:10px
}

然后取消子 LI 的边距 :

ul.sf-menu li li {
margin-right:0
}

等等,具体取决于您的嵌套深度UL 是

If what you're looking for is spacing out the items that are at the first level of your Superfish drop-down menu, just add some margin to the direct children of the container of the .sf-menu. Something like this should work :

ul.sf-menu > li {
margin-right:10px
}

Of course that wouldn't work on IE 6, so if you need to support IE 6 you could go with :

ul.sf-menu li {
margin-right:10px
}

and then cancelling out the margin for the children LIs :

ul.sf-menu li li {
margin-right:0
}

and so on depending on how deep your nested ULs are

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