如何固定标签“li”的大小?

发布于 2024-11-14 02:25:05 字数 426 浏览 3 评论 0原文

我正在尝试创建一个像 this这个

但我正在尝试所有方法来修复标签“read”的大小,但我不能。 我刚开始,看看我在哪里。 请注意,当用户将鼠标悬停在标签“a”上时,背景颜色会发生变化。

请,如果您可以更改代码并告诉我如何操作。

谢谢。

I'm trying to create a menu like this or this.

But I am trying all ways to fix the size of the tag "read" but I can not.
I'm in the beginning, to see where I am.
Notice that when the user hovers the tag "a" changes the background color.

Please, if you can change the code and show me how.

Thanks.

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

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

发布评论

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

评论(3

天气好吗我好吗 2024-11-21 02:25:05

使用 display:inline-block; 而不是内联。

Use display:inline-block; instead of inline.

溇涏 2024-11-21 02:25:05

你的问题是你已经指定了 display:inline;并从那时起对其进行样式设置,您必须将其删除,或者像他们所说的那样更改为内联块,然后重新设置菜单样式。

Your problem is that you've specified display:inline; and styled it from that point, you'll have to remove that, or change to inline-block like they said, and re-style your menu.

硬不硬你别怂 2024-11-21 02:25:05

您不能声明内联 li 的宽度,请使用

display:inline-block;

You cant declare width for an inline li , use

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