固定菜单宽度 - 项目分布

发布于 2024-12-10 04:02:31 字数 374 浏览 0 评论 0原文

我有列表菜单

<ul>
<li>item1</li>
<li>item2</li>
<li>longitem3</li>
</ul>

菜单 css

ul{
width:500px;
}
li {
float:left;
}

我想自动在菜单中分发我的项目,这样它们之间就有相同的空间,就像这样

{menu}{item}{space}{item}{space}{item}{menu}

是吗可以只使用 html 和 css 而不是 javascript 来做到这一点吗?谢谢

I have list menu

<ul>
<li>item1</li>
<li>item2</li>
<li>longitem3</li>
</ul>

menu css

ul{
width:500px;
}
li {
float:left;
}

i would like to automatically distribute my items in menu so they would have the same space between them like this

{menu}{item}{space}{item}{space}{item}{menu}

is it possible to do this using only html and css, not javascript? Thanks

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

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

发布评论

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

评论(4

爱的故事 2024-12-17 04:02:31

我会使用 css 类而不是影响所有 << li>,像这样:

<li class="menuItem">

至于 css:

.menuItem {
    float: left;
    margin-right: <some number of px>;
}
.menuItem:last-child {
    margin-right: 0;
}

':last-child' 选择器会覆盖之前的定义并删除最后一个菜单项的右侧空间。

I would use a css class rather than affecting all the < li>, like this:

<li class="menuItem">

As for the css:

.menuItem {
    float: left;
    margin-right: <some number of px>;
}
.menuItem:last-child {
    margin-right: 0;
}

The ':last-child' selector overrides the previous definition and removes the right space for the last menu item.

阳光下慵懒的猫 2024-12-17 04:02:31

您可以在 li 的右侧添加边距

li { float:left; margin-right: 5px}

You can add a margin to the right side of your li's

li { float:left; margin-right: 5px}
一向肩并 2024-12-17 04:02:31

只需在每个 li 项的右侧添加一些填充,例如

li {
float:left;
padding-right:20px;
}

Just add some padding to the right of each li item, e.g.

li {
float:left;
padding-right:20px;
}
往事风中埋 2024-12-17 04:02:31
ul {
    text-align: center;
}

li {
    display: inline-block;
}
ul {
    text-align: center;
}

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