下拉菜单中的问题
我遇到动态下拉菜单的问题。 请检查屏幕截图。
在这里,我将子菜单列表固定在屏幕的右侧。它无法正确查看。我想将此列表放在屏幕的左侧或上方。
抱歉英语不好。希望你理解。
任何帮助将不胜感激。 谢谢
I am getting an issue with dynamic drop down menu.
Please check the screenshot.
here I am getting the child menu list fixed into right side to screen. It is not viewing correctly. I want to get this list either left side or upper the screen.
Sorry poor english. Hope You understand.
Any help will be greatly appreciated.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看: http://www.d1079363-74.cp.blacknight.com/dev /
在你的 HTML 中,你需要添加另一个
class
到应该在右侧打开的子菜单,如下所示:然后添加这个新的 CSS:
这应该可以工作,但我还没有看着你所有的CSS。如果它不起作用,请尝试使用
left: -100% !important;
代替。如果可行,我将看看如何在不使用!important
的情况下修复特异性。Looking at: http://www.d1079363-74.cp.blacknight.com/dev/
In your HTML, you need to add another
class
to the submenu that should open on the right, like this:Then add this new CSS:
That should work, but I haven't looked at all your CSS. On the off chance that it doesn't work, try using
left: -100% !important;
instead. If that works, I'll have a look at how to fix the specificity without using!important
.