下拉菜单未正确显示
我的问题是,当我尝试在“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??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
#mainNav li
从display:block;
更改为display:inline-block;
。刚刚在 firebug 中尝试过,菜单移动到正确的位置。问题是,使用
display:block
或display:inline
li
的宽度为零(尽管有内部内容),因此所有li< /code> 元素向左移动。
display:inline-block
使其拉伸以合并内部内容。如果将鼠标移到 firebug 的 html 选项卡中,您可以看到区域元素突出显示。
Change
#mainNav li
fromdisplay:block;
todisplay:inline-block;
. Just tried in firebug, menu moves to the right place.The problem is that with
display:block
ordisplay:inline
li
has zero width (despite inner content) and thus allli
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.