下拉菜单未正确显示

发布于 2024-09-27 16:20:00 字数 226 浏览 1 评论 0原文

我的问题是,当我尝试在“Departamentos”下显示下拉菜单时,它有点向左......而不是在Departamentos下的右侧位置......

我尝试几个小时但什么也没有,可能是什么问题?

网站链接

my problem is that when I try to show my dropdown menu under "Departamentos" its kinda to the left... not in the right position under Departamentos...

I try for hours but nothing, What could be the problem??

LINK TO THE WEBSITE

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

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

发布评论

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

评论(1

心凉 2024-10-04 16:20:01

#mainNav lidisplay:block; 更改为 display:inline-block;。刚刚在 firebug 中尝试过,菜单移动到正确的位置。

问题是,使用 display:blockdisplay:inline li 的宽度为零(尽管有内部内容),因此所有 li< /code> 元素向左移动。 display:inline-block 使其拉伸以合并内部内容。

如果将鼠标移到 firebug 的 html 选项卡中,您可以看到区域元素突出显示。

Change #mainNav li from display:block; to display:inline-block;. Just tried in firebug, menu moves to the right place.

The problem is that with display:block or display:inline li has zero width (despite inner content) and thus all li elements are shifted to the left. display:inline-block makes it stretch to incorporate inner content.

You can see the area element takes highlighted if you move mouse over it in html tab in firebug.

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